From de7172d78a11d6d9e192200add7181367496d683 Mon Sep 17 00:00:00 2001 From: Anders Roxell Date: Wed, 17 Jun 2026 07:57:42 +0200 Subject: [PATCH] integration: pin FVP_ARM_ARCH_VERSION for fvp-aemva The new FVP model enables v9.7 CPU features by default. The kernel that the fvp-aemva rootfs ships does not support them, so it hangs before the console and auto-login times out. Pin FVP_ARM_ARCH_VERSION to 9.5, the highest value the kernel boots with. Signed-off-by: Anders Roxell --- test/integration.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/test/integration.py b/test/integration.py index 1de16dd..d971fd1 100755 --- a/test/integration.py +++ b/test/integration.py @@ -218,6 +218,14 @@ def run(device, test, runtime, debug): ] ) + elif device == "fvp-aemva": + args.extend( + [ + "--parameters", + "FVP_ARM_ARCH_VERSION=9.5", + ] + ) + try: ret = subprocess.call(args) if ret != 0: