From d68baade32d6f2c5e9ccdd21c9da210dde7f5940 Mon Sep 17 00:00:00 2001 From: Leah Rowe Date: Sun, 2 Jun 2024 19:18:11 +0100 Subject: [PATCH] misc/emulation: fix image path Signed-off-by: Leah Rowe --- site/docs/misc/emulation.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/site/docs/misc/emulation.md b/site/docs/misc/emulation.md index 00dba4f..74def10 100644 --- a/site/docs/misc/emulation.md +++ b/site/docs/misc/emulation.md @@ -23,16 +23,16 @@ In order to test the resulting roms, you must have qemu installed on the host ma Test the roms by pointing qemu to the rom in bios mode. For example: -`qemu-system-x86_64 -bios bin/qemu_x86_12mb/grub_qemu_x86_12mb_libgfxinit_corebootfb_usqwerty_noblobs.rom` +`qemu-system-x86_64 -bios bin/qemu_x86_12mb/grub_qemu_x86_12mb_libgfxinit_corebootfb_usqwerty.rom` -`qemu-system-x86_64 -bios bin/qemu_x86_12mb/uboot_payload_qemu_x86_12mb_libgfxinit_corebootfb_noblobs.rom -serial stdio` +`qemu-system-x86_64 -bios bin/qemu_x86_12mb/uboot_payload_qemu_x86_12mb_libgfxinit_corebootfb.rom -serial stdio` There is basic support for an arm64 virtual machine as well, although the payloads are not as developed as the x86 one: ./build roms qemu_arm64_12mb ``` -qemu-system-aarch64 -bios bin/qemu_arm64_12mb/uboot_payload_qemu_arm64_12mb_libgfxinit_corebootfb_noblobs.rom \ +qemu-system-aarch64 -bios bin/qemu_arm64_12mb/uboot_payload_qemu_arm64_12mb_libgfxinit_corebootfb.rom \ -M virt,secure=on,virtualization=on,acpi=on -cpu cortex-a53 -m 768M -serial stdio -vga none -display none ```