filesystem: also return the encoded FCP from probe_file

he method probe_file returns the decoded FCP after it managed to
successfully probe the file. Lets also return the encoded FCP string, as
it is needed by the caller.

Change-Id: Ia5659e106fb0d6fb8b77506a10eba309e764723e
This commit is contained in:
Philipp Maier 2022-06-01 18:10:04 +02:00
parent 9a4091d93a
commit 6b8eedc501
1 changed files with 3 additions and 2 deletions

View File

@ -1402,7 +1402,7 @@ class RuntimeState(object):
self.selected_file.add_files([f])
self.selected_file = f
return select_resp
return select_resp, data
def _select_pre(self, cmd_app):
# unregister commands of old file
@ -1487,7 +1487,8 @@ class RuntimeState(object):
raise RuntimeError("%s: %s - %s" % (swm.sw_actual, k[0], k[1]))
select_resp = f.decode_select_response(data)
else:
select_resp = self.probe_file(name, cmd_app)
(select_resp, data) = self.probe_file(name, cmd_app)
# store the raw + decoded FCP for later reference
self.selected_file_fcp_hex = data
self.selected_file_fcp = select_resp