mirror of
https://github.com/genodelabs/genode.git
synced 2025-02-06 11:10:24 +00:00
tool: remove outdated tianocore image
It is known to work up to Qemu 2.9 solely. Instead use ovmf package provided by Linux distributions. Issue #3784
This commit is contained in:
parent
1cfb1af56e
commit
01676717e2
@ -29,18 +29,3 @@ code respectively the download source of binaries are described below.
|
|||||||
OS header can be loaded.
|
OS header can be loaded.
|
||||||
The changes are available on the genode_bender branch of
|
The changes are available on the genode_bender branch of
|
||||||
https://github.com/skalk/morbo.git.
|
https://github.com/skalk/morbo.git.
|
||||||
|
|
||||||
:'tianocore.bin'
|
|
||||||
|
|
||||||
Open Virtual Machine Firmware (OVMF) developed by
|
|
||||||
http://www.tianocore.org/ovmf. OVMF is an project to enable UEFI support for
|
|
||||||
Virtual Machines. This UEFI binary is supposed to be used with QEMU.
|
|
||||||
|
|
||||||
The UEFI firmware was built based on the description of
|
|
||||||
|
|
||||||
https://github.com/tianocore/tianocore.github.io/wiki/How-to-build-OVMF
|
|
||||||
|
|
||||||
and the source code has been obtained from
|
|
||||||
|
|
||||||
https://github.com/tianocore/edk2.git
|
|
||||||
git commit 6e5e544f227f031d0b45828b56cec5668dd1bf5b
|
|
||||||
|
Binary file not shown.
@ -140,7 +140,12 @@ proc run_power_on { } {
|
|||||||
append qemu_args " -drive format=raw,file=[run_dir].img "
|
append qemu_args " -drive format=raw,file=[run_dir].img "
|
||||||
} else {
|
} else {
|
||||||
if {[have_include "image/uefi"]} {
|
if {[have_include "image/uefi"]} {
|
||||||
append qemu_args " --bios [genode_dir]/tool/boot/tianocore.bin -net none -drive format=raw,file=[run_dir].img "
|
set uefi_firmware "/usr/share/ovmf/OVMF.fd"
|
||||||
|
if {![file exists $uefi_firmware]} {
|
||||||
|
puts "'$uefi_firmware' uefi image missing. Please install a ovmf package matching your qemu version."
|
||||||
|
exit -3
|
||||||
|
}
|
||||||
|
append qemu_args " --bios $uefi_firmware -net none -drive format=raw,file=[run_dir].img "
|
||||||
} else {
|
} else {
|
||||||
puts "Aborting, cannot execute Qemu without a ISO or disk image"
|
puts "Aborting, cannot execute Qemu without a ISO or disk image"
|
||||||
exit -4
|
exit -4
|
||||||
|
Loading…
x
Reference in New Issue
Block a user