mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-06-13 16:42:39 +02:00
The ebuild has been largely rewritten. It now: * Respects CC, CXX, and flags when building the base tools. * Doesn't use gcc/cc when building the firmware, enabling cross. * Prepares the ground for supporting platforms other than OVMF for x64. * Installs OVMF_VARS.secboot.fd prepared with virt-fw-vars. * Includes the latest UEFI DBX update in OVMF_VARS.secboot.fd. * Adds 4MB variants of the .fd images (in QCOW2 format). * Fixes network support broken by a recent bump. * Drops EnrollDefaultKeys.efi and UefiShell.img The enrollment tool hasn't actually worked for a while and is no longer needed now that we provide OVMF_VARS.secboot.fd. UefiShell.img is therefore of little use, and other distros now provide UefiShell.iso instead anyway. We can do the same if there is sufficient interest. This moves us closer to Fedora, but they ship far more variants. They have a large Python wrapper around upstream's build system, which is unusual in itself. Building all these would make the ebuild much more complex, take a long time, and use up more disk space. Perhaps USE flags could help here, but I'm not sure what all these variants are for. I also decided to install to paths based on upstream's names, e.g. edk2/ArmVirtQemu-AARCH64 as opposed to Fedora's edk2/aarch64 because mixing QEMU with Xen and others would be confusing when there are many similarly named files, even within a single architecture. Closes: https://bugs.gentoo.org/891191 Closes: https://bugs.gentoo.org/921819 Closes: https://bugs.gentoo.org/929838 Signed-off-by: James Le Cuirot <chewi@gentoo.org>
36 lines
783 B
JSON
36 lines
783 B
JSON
{
|
|
"description": "OVMF for x86_64, without SB+SMM, empty varstore",
|
|
"interface-types": [
|
|
"uefi"
|
|
],
|
|
"mapping": {
|
|
"device": "flash",
|
|
"mode" : "split",
|
|
"executable": {
|
|
"filename": "/usr/share/edk2/OvmfX64/OVMF_CODE_4M.qcow2",
|
|
"format": "qcow2"
|
|
},
|
|
"nvram-template": {
|
|
"filename": "/usr/share/edk2/OvmfX64/OVMF_VARS_4M.qcow2",
|
|
"format": "qcow2"
|
|
}
|
|
},
|
|
"targets": [
|
|
{
|
|
"architecture": "x86_64",
|
|
"machines": [
|
|
"pc-i440fx-*",
|
|
"pc-q35-*"
|
|
]
|
|
}
|
|
],
|
|
"features": [
|
|
"acpi-s3",
|
|
"amd-sev",
|
|
"amd-sev-es",
|
|
"verbose-dynamic"
|
|
],
|
|
"tags": [
|
|
|
|
]
|
|
}
|