diff options
author | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2016-09-12 23:22:14 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2016-09-12 23:22:29 +0200 |
commit | d284ab4d037ed69c0368ab45f79917465187dfc8 (patch) | |
tree | 4ad8608b4af65507a4f252b282334d98387bb637 /target/x86_64/qemu-x86_64 | |
parent | 284b7b24de6d8f957c6aba9d2010bed9eda98efe (diff) |
qemu: efi boot works, need to add a package for EFI bios file
Diffstat (limited to 'target/x86_64/qemu-x86_64')
-rw-r--r-- | target/x86_64/qemu-x86_64/genimage.cfg | 15 |
1 files changed, 14 insertions, 1 deletions
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" } } - |