
The initrd_high and fdt_high env variables have a special meaning when set to -1 so the width needs to match for the checks to work. Signed-off-by: Ludwig Nussel <ludwig.nussel@siemens.com> --- board/emulation/qemu-arm/qemu-arm.env | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/board/emulation/qemu-arm/qemu-arm.env b/board/emulation/qemu-arm/qemu-arm.env index fb4adef281e..42e0b61164e 100644 --- a/board/emulation/qemu-arm/qemu-arm.env +++ b/board/emulation/qemu-arm/qemu-arm.env @@ -5,8 +5,13 @@ stdin=serial,usbkbd stdout=serial,vidconsole stderr=serial,vidconsole +#ifdef CONFIG_ARM64 +fdt_high=0xffffffffffffffff +initrd_high=0xffffffffffffffff +#else fdt_high=0xffffffff initrd_high=0xffffffff +#endif fdt_addr=0x40000000 scriptaddr=0x40200000 pxefile_addr_r=0x40300000 -- 2.34.1