OVMF: Enable bundling the MS secure boot variables on aarch64.

This commit is contained in:
Shea Levy 2024-02-16 08:27:37 -05:00
parent f6fc51dc9f
commit 88a1349dfe
No known key found for this signature in database
GPG key ID: 5C0BD6957D86FE27
2 changed files with 5 additions and 1 deletions

View file

@ -45,6 +45,10 @@ let
aarch64 = { aarch64 = {
projectDscPath = "ArmVirtPkg/ArmVirtQemu.dsc"; projectDscPath = "ArmVirtPkg/ArmVirtQemu.dsc";
fwPrefix = "AAVMF"; fwPrefix = "AAVMF";
msVarsArgs = {
flavor = "AAVMF";
archDir = "AARCH64";
};
}; };
riscv64 = { riscv64 = {
projectDscPath = "OvmfPkg/RiscVVirt/RiscVVirtQemu.dsc"; projectDscPath = "OvmfPkg/RiscVVirt/RiscVVirtQemu.dsc";

View file

@ -26904,7 +26904,7 @@ with pkgs;
httpSupport = true; httpSupport = true;
tpmSupport = true; tpmSupport = true;
tlsSupport = true; tlsSupport = true;
msVarsTemplate = stdenv.isx86_64; msVarsTemplate = stdenv.isx86_64 || stdenv.isAarch64;
}; };
ops = callPackage ../applications/virtualization/ops { }; ops = callPackage ../applications/virtualization/ops { };