about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAdam C. Stephens <2071575+adamcstephens@users.noreply.github.com>2023-12-22 15:19:10 -0500
committerGitHub <noreply@github.com>2023-12-22 15:19:10 -0500
commitacde5fd0270d8d9d4f5ffe6b7ddafeba9ac652f9 (patch)
tree1a92a1f485319c53c0d53744db7a30e0105734ca
parent2dfde0ed0095e604a659d1ef2ca32ededf3ac48b (diff)
parent08f37e63d4e5832bed93b5e450e7715f463e6869 (diff)
Merge pull request #272340 from lodi/ovmfsecure
OVMFFull: remove legacy CSM attribute, add `tlsSupport`
-rw-r--r--pkgs/top-level/all-packages.nix4
1 files changed, 1 insertions, 3 deletions
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 251218ab9faab..a752eb410677b 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -27096,11 +27096,9 @@ with pkgs;
   OVMF = callPackage ../applications/virtualization/OVMF { };
   OVMFFull = callPackage ../applications/virtualization/OVMF {
     secureBoot = true;
-    # CSM support is a BIOS emulation mechanism,
-    # SeaBIOS is only available on x86.
-    csmSupport = stdenv.hostPlatform.isx86;
     httpSupport = true;
     tpmSupport = true;
+    tlsSupport = true;
   };
 
   ops = callPackage ../applications/virtualization/ops { };