OVMF: Enable bundling the MS secure boot variables on aarch64.
This commit is contained in:
parent
f6fc51dc9f
commit
88a1349dfe
2 changed files with 5 additions and 1 deletions
|
@ -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";
|
||||||
|
|
|
@ -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 { };
|
||||||
|
|
Loading…
Reference in a new issue