From d284ab4d037ed69c0368ab45f79917465187dfc8 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Mon, 12 Sep 2016 23:22:14 +0200 Subject: qemu: efi boot works, need to add a package for EFI bios file --- target/x86_64/Makefile | 11 +++++++++++ target/x86_64/qemu-x86_64/genimage.cfg | 15 ++++++++++++++- 2 files changed, 25 insertions(+), 1 deletion(-) (limited to 'target/x86_64') diff --git a/target/x86_64/Makefile b/target/x86_64/Makefile index cd6530c91..dfaaa1e43 100644 --- a/target/x86_64/Makefile +++ b/target/x86_64/Makefile @@ -9,6 +9,7 @@ KERNEL:=$(LINUX_DIR)/arch/x86/boot/bzImage QEMU_ARCH:=x86_64 QEMU_ARGS:=-M pc +QEMU_ARGS+=-L . -bios bios.bin QEMU_ARGS+=${ADK_QEMU_ARGS} QEMU_ARGS+=-net user -net nic,model=e1000 @@ -84,6 +85,16 @@ ifeq ($(ADK_TARGET_FS),iso) targethelp: @echo 'ISO image is at $<' endif +ifeq ($(ADK_TARGET_FS),genimage) +targethelp: + @echo "The disk image is: $(FW_DIR)/disk.img" + @echo "Use following command to install it on SD card:" +ifeq ($(ADK_TARGET_QEMU),y) + @echo 'qemu-system-${QEMU_ARCH} ${QEMU_ARGS} $(FW_DIR)/disk.img' +else + @echo 'sudo dd if=$(FW_DIR)/disk.img of=/dev/sdX bs=2048k' +endif +endif # image creation and kernel install kernel-strip: diff --git a/target/x86_64/qemu-x86_64/genimage.cfg b/target/x86_64/qemu-x86_64/genimage.cfg index 9f2d3ec72..5a5479fbd 100644 --- a/target/x86_64/qemu-x86_64/genimage.cfg +++ b/target/x86_64/qemu-x86_64/genimage.cfg @@ -1,12 +1,25 @@ +image efi-part.vfat { + vfat { + file EFI { + image = "efi-part/EFI" + } + } + size = 32M +} + image disk.img { hdimage { } + partition boot { + partition-type = 0xEF + image = "efi-part.vfat" + } + partition root { partition-type = 0x83 image = "rootfs.ext" } } - -- cgit v1.2.3