1
0
mirror of https://git.yoctoproject.org/meta-arm synced 2026-05-07 04:58:57 +00:00

scripts/runfvp: fix silent failure when FVP is missing

Print an error message if the FVP binary cannot be found, instead of
failing silently.

Signed-off-by: Roger Knecht <roger.knecht@arm.com>
Signed-off-by: Jon Mason <jon.mason@arm.com>
This commit is contained in:
Roger Knecht
2026-04-16 07:53:28 +00:00
committed by Jon Mason
parent 6e1cea024a
commit 8eb10af809
+2 -1
View File
@@ -77,7 +77,8 @@ def start_fvp(args, fvpconf, extra_args):
else:
for line in fvp.stdout:
print(line.strip().decode(errors='ignore'))
except FileNotFoundError as e:
logger.error(f"FVP executable not found ({e})")
finally:
return fvp.stop()