d5c17b3c47
Since it is now on `${seabios}/share/seabios`.
121 lines
3.9 KiB
Nix
121 lines
3.9 KiB
Nix
{ stdenv, nixosTests, lib, edk2, util-linux, nasm, acpica-tools, llvmPackages
|
|
, csmSupport ? false, seabios
|
|
, fdSize2MB ? csmSupport
|
|
, fdSize4MB ? false
|
|
, secureBoot ? false
|
|
, httpSupport ? false
|
|
, tpmSupport ? false
|
|
, tlsSupport ? false
|
|
, debug ? false
|
|
# Usually, this option is broken, do not use it except if you know what you are
|
|
# doing.
|
|
, sourceDebug ? false
|
|
}:
|
|
|
|
let
|
|
|
|
projectDscPath = if stdenv.isi686 then
|
|
"OvmfPkg/OvmfPkgIa32.dsc"
|
|
else if stdenv.isx86_64 then
|
|
"OvmfPkg/OvmfPkgX64.dsc"
|
|
else if stdenv.hostPlatform.isAarch then
|
|
"ArmVirtPkg/ArmVirtQemu.dsc"
|
|
else if stdenv.hostPlatform.isRiscV then
|
|
"OvmfPkg/RiscVVirt/RiscVVirtQemu.dsc"
|
|
else
|
|
throw "Unsupported architecture";
|
|
|
|
version = lib.getVersion edk2;
|
|
|
|
suffixes = {
|
|
i686 = "FV/OVMF";
|
|
x86_64 = "FV/OVMF";
|
|
aarch64 = "FV/AAVMF";
|
|
};
|
|
|
|
in
|
|
|
|
edk2.mkDerivation projectDscPath (finalAttrs: {
|
|
pname = "OVMF";
|
|
inherit version;
|
|
|
|
outputs = [ "out" "fd" ];
|
|
|
|
nativeBuildInputs = [ util-linux nasm acpica-tools ]
|
|
++ lib.optionals stdenv.cc.isClang [ llvmPackages.bintools llvmPackages.llvm ];
|
|
strictDeps = true;
|
|
|
|
hardeningDisable = [ "format" "stackprotector" "pic" "fortify" ];
|
|
|
|
buildFlags =
|
|
# IPv6 has no reason to be disabled.
|
|
[ "-D NETWORK_IP6_ENABLE=TRUE" ]
|
|
++ lib.optionals debug [ "-D DEBUG_ON_SERIAL_PORT=TRUE" ]
|
|
++ lib.optionals sourceDebug [ "-D SOURCE_DEBUG_ENABLE=TRUE" ]
|
|
++ lib.optionals secureBoot [ "-D SECURE_BOOT_ENABLE=TRUE" ]
|
|
++ lib.optionals csmSupport [ "-D CSM_ENABLE" ]
|
|
++ lib.optionals fdSize2MB ["-D FD_SIZE_2MB"]
|
|
++ lib.optionals fdSize4MB ["-D FD_SIZE_4MB"]
|
|
++ lib.optionals httpSupport [ "-D NETWORK_HTTP_ENABLE=TRUE" "-D NETWORK_HTTP_BOOT_ENABLE=TRUE" ]
|
|
++ lib.optionals tlsSupport [ "-D NETWORK_TLS_ENABLE=TRUE" ]
|
|
++ lib.optionals tpmSupport [ "-D TPM_ENABLE" "-D TPM2_ENABLE" "-D TPM2_CONFIG_ENABLE"];
|
|
|
|
buildConfig = if debug then "DEBUG" else "RELEASE";
|
|
env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.cc.isClang "-Qunused-arguments";
|
|
|
|
env.PYTHON_COMMAND = "python3";
|
|
|
|
postPatch = lib.optionalString csmSupport ''
|
|
cp ${seabios}/share/seabios/Csm16.bin OvmfPkg/Csm/Csm16/Csm16.bin
|
|
'';
|
|
|
|
postFixup = (
|
|
if stdenv.hostPlatform.isAarch then ''
|
|
mkdir -vp $fd/FV
|
|
mkdir -vp $fd/AAVMF
|
|
mv -v $out/FV/QEMU_{EFI,VARS}.fd $fd/FV
|
|
|
|
# Use Debian dir layout: https://salsa.debian.org/qemu-team/edk2/blob/debian/debian/rules
|
|
dd of=$fd/FV/AAVMF_CODE.fd if=/dev/zero bs=1M count=64
|
|
dd of=$fd/FV/AAVMF_CODE.fd if=$fd/FV/QEMU_EFI.fd conv=notrunc
|
|
dd of=$fd/FV/AAVMF_VARS.fd if=/dev/zero bs=1M count=64
|
|
|
|
# Also add symlinks for Fedora dir layout: https://src.fedoraproject.org/cgit/rpms/edk2.git/tree/edk2.spec
|
|
ln -s $fd/FV/AAVMF_CODE.fd $fd/AAVMF/QEMU_EFI-pflash.raw
|
|
ln -s $fd/FV/AAVMF_VARS.fd $fd/AAVMF/vars-template-pflash.raw
|
|
''
|
|
else if stdenv.hostPlatform.isRiscV then ''
|
|
mkdir -vp $fd/FV
|
|
|
|
mv -v $out/FV/RISCV_VIRT_{CODE,VARS}.fd $fd/FV/
|
|
truncate -s 32M $fd/FV/RISCV_VIRT_CODE.fd
|
|
truncate -s 32M $fd/FV/RISCV_VIRT_VARS.fd
|
|
''
|
|
else ''
|
|
mkdir -vp $fd/FV
|
|
mv -v $out/FV/OVMF{,_CODE,_VARS}.fd $fd/FV
|
|
'');
|
|
|
|
dontPatchELF = true;
|
|
|
|
passthru =
|
|
let
|
|
cpuName = stdenv.hostPlatform.parsed.cpu.name;
|
|
suffix = suffixes."${cpuName}" or (throw "Host cpu name `${cpuName}` is not supported in this OVMF derivation!");
|
|
prefix = "${finalAttrs.finalPackage.fd}/${suffix}";
|
|
in {
|
|
firmware = "${prefix}_CODE.fd";
|
|
variables = "${prefix}_VARS.fd";
|
|
# This will test the EFI firmware for the host platform as part of the NixOS Tests setup.
|
|
tests.basic-systemd-boot = nixosTests.systemd-boot.basic;
|
|
};
|
|
|
|
meta = {
|
|
description = "Sample UEFI firmware for QEMU and KVM";
|
|
homepage = "https://github.com/tianocore/tianocore.github.io/wiki/OVMF";
|
|
license = lib.licenses.bsd2;
|
|
inherit (edk2.meta) platforms;
|
|
maintainers = with lib.maintainers; [ adamcstephens raitobezarius ];
|
|
broken = stdenv.isDarwin;
|
|
};
|
|
})
|