2021-08-08 11:59:48 +01:00
|
|
|
{ stdenv, lib, edk2, util-linux, nasm, acpica-tools
|
2019-07-15 15:35:30 +01:00
|
|
|
, csmSupport ? false, seabios ? null
|
|
|
|
, secureBoot ? false
|
2021-02-16 00:34:59 +00:00
|
|
|
, httpSupport ? false
|
2021-10-11 07:28:39 +01:00
|
|
|
, tpmSupport ? false
|
2019-07-15 15:35:30 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
assert csmSupport -> seabios != null;
|
2012-03-14 06:57:58 +00:00
|
|
|
|
2012-03-14 07:29:11 +00:00
|
|
|
let
|
|
|
|
|
2018-03-14 15:37:49 +00:00
|
|
|
projectDscPath = if stdenv.isi686 then
|
|
|
|
"OvmfPkg/OvmfPkgIa32.dsc"
|
2012-03-14 07:29:11 +00:00
|
|
|
else if stdenv.isx86_64 then
|
2018-03-14 15:37:49 +00:00
|
|
|
"OvmfPkg/OvmfPkgX64.dsc"
|
|
|
|
else if stdenv.isAarch64 then
|
|
|
|
"ArmVirtPkg/ArmVirtQemu.dsc"
|
2012-03-14 07:29:11 +00:00
|
|
|
else
|
|
|
|
throw "Unsupported architecture";
|
|
|
|
|
2019-11-24 17:22:28 +00:00
|
|
|
version = lib.getVersion edk2;
|
2012-03-14 07:29:11 +00:00
|
|
|
in
|
|
|
|
|
2020-04-20 12:30:35 +01:00
|
|
|
edk2.mkDerivation projectDscPath {
|
2022-03-07 11:37:20 +00:00
|
|
|
pname = "OVMF";
|
|
|
|
inherit version;
|
2012-03-14 06:57:58 +00:00
|
|
|
|
2017-05-18 11:46:14 +01:00
|
|
|
outputs = [ "out" "fd" ];
|
|
|
|
|
2021-08-08 11:59:48 +01:00
|
|
|
buildInputs = [ util-linux nasm acpica-tools ];
|
2016-02-08 23:18:03 +00:00
|
|
|
|
2019-07-15 15:35:30 +01:00
|
|
|
hardeningDisable = [ "format" "stackprotector" "pic" "fortify" ];
|
2017-05-29 11:20:05 +01:00
|
|
|
|
2019-07-15 15:35:30 +01:00
|
|
|
buildFlags =
|
2021-11-05 18:38:07 +00:00
|
|
|
lib.optionals secureBoot [ "-D SECURE_BOOT_ENABLE=TRUE" ]
|
2021-02-16 00:34:59 +00:00
|
|
|
++ lib.optionals csmSupport [ "-D CSM_ENABLE" "-D FD_SIZE_2MB" ]
|
2021-10-11 07:28:39 +01:00
|
|
|
++ lib.optionals httpSupport [ "-D NETWORK_HTTP_ENABLE=TRUE" "-D NETWORK_HTTP_BOOT_ENABLE=TRUE" ]
|
|
|
|
++ lib.optionals tpmSupport [ "-D TPM_ENABLE" "-D TPM2_ENABLE" "-D TPM2_CONFIG_ENABLE"];
|
2015-01-26 20:13:31 +00:00
|
|
|
|
2019-07-15 15:35:30 +01:00
|
|
|
postPatch = lib.optionalString csmSupport ''
|
|
|
|
cp ${seabios}/Csm16.bin OvmfPkg/Csm/Csm16/Csm16.bin
|
2018-03-14 13:52:32 +00:00
|
|
|
'';
|
2015-01-26 20:13:31 +00:00
|
|
|
|
2018-03-14 15:37:49 +00:00
|
|
|
postFixup = if stdenv.isAarch64 then ''
|
|
|
|
mkdir -vp $fd/FV
|
2020-06-14 22:25:42 +01:00
|
|
|
mkdir -vp $fd/AAVMF
|
2018-03-14 15:37:49 +00:00
|
|
|
mv -v $out/FV/QEMU_{EFI,VARS}.fd $fd/FV
|
|
|
|
|
2020-06-14 04:35:36 +01:00
|
|
|
# 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
|
2020-06-14 22:25:42 +01:00
|
|
|
|
|
|
|
# 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
|
2018-03-14 15:37:49 +00:00
|
|
|
'' else ''
|
2019-07-15 15:35:30 +01:00
|
|
|
mkdir -vp $fd/FV
|
|
|
|
mv -v $out/FV/OVMF{,_CODE,_VARS}.fd $fd/FV
|
2017-05-18 11:46:14 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
dontPatchELF = true;
|
|
|
|
|
2012-03-14 06:57:58 +00:00
|
|
|
meta = {
|
|
|
|
description = "Sample UEFI firmware for QEMU and KVM";
|
2020-05-04 15:00:37 +01:00
|
|
|
homepage = "https://github.com/tianocore/tianocore.github.io/wiki/OVMF";
|
2021-01-15 05:42:41 +00:00
|
|
|
license = lib.licenses.bsd2;
|
2020-04-17 14:15:57 +01:00
|
|
|
platforms = ["x86_64-linux" "i686-linux" "aarch64-linux" "x86_64-darwin"];
|
2012-03-14 06:57:58 +00:00
|
|
|
};
|
2019-07-15 15:35:30 +01:00
|
|
|
}
|