On Mon, Feb 13, 2023 at 10:17:59AM +0000, Nikos Nikoleris wrote: > This change adds a efi/run script inspired by the one in x86. This > script will setup a folder with the test compiled as an EFI app and a > startup.nsh script. The script launches QEMU providing an image with > EDKII and the path to the folder with the test which is executed > automatically. > > For example: > > $> ./arm/efi/run ./arm/selftest.efi setup smp=2 mem=256 This should be ./arm/efi/run ./arm/selftest.efi -append "setup smp=2 mem=256" -smp 2 -m 256 but I can't get any tests to run through ./arm/efi/run. All of them immediately die with a DABT_EL1. I can get the tests to run (and pass) by manually booting into UEFI with the FAT partition pointing at the parent directory $QEMU -nodefaults -machine virt -accel tcg -cpu cortex-a57 \ -device pci-testdev -display none -serial stdio \ -bios /usr/share/edk2/aarch64/QEMU_EFI.silent.fd \ -drive file.dir=efi-tests/,file.driver=vvfat,file.rw=on,format=raw,if=virtio and then, for example for the timer test, doing fs0: cd timer timer.efi but the script never works. Thanks, drew