Commit 388c7acd authored by Raito Bezarius's avatar Raito Bezarius
Browse files

OVMFFull: fix build on non-x86 platforms

e.g. aarch64

`csmSupport` requires SeaBIOS, which is arguably x86 (i686 and x86_64) only.
parent c182df2e
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -27216,7 +27216,9 @@ with pkgs;
  OVMF = callPackage ../applications/virtualization/OVMF { };
  OVMFFull = callPackage ../applications/virtualization/OVMF {
    secureBoot = true;
    csmSupport = true;
    # CSM support is a BIOS emulation mechanism,
    # SeaBIOS is only available on x86.
    csmSupport = stdenv.hostPlatform.isx86;
    httpSupport = true;
    tpmSupport = true;
  };