From 8eb10af8092dc3fff86891339fd024d8583f457f Mon Sep 17 00:00:00 2001 From: Roger Knecht Date: Thu, 16 Apr 2026 07:53:28 +0000 Subject: [PATCH] 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 Signed-off-by: Jon Mason --- scripts/runfvp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/runfvp b/scripts/runfvp index 135cf04d..ceae18ae 100755 --- a/scripts/runfvp +++ b/scripts/runfvp @@ -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()