Commit 333a24a6 authored by Tuomas Tynkkynen's avatar Tuomas Tynkkynen
Browse files

nixos/release.nix: Add SD images for ARMv6 + ARMv7

These don't have affect the default Hydra setup (you need to pass
the relevant system in the supportedSystem list) but let's add it for
completeness and convenience.
parent bd77849b
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -166,8 +166,12 @@ in rec {
    inherit system;
  });

  sd_image = forMatchingSystems [ "aarch64-linux" ] (system: makeSdImage {
    module = ./modules/installer/cd-dvd/sd-image-aarch64.nix;
  sd_image = forMatchingSystems [ "armv6l-linux" "armv7l-linux" "aarch64-linux" ] (system: makeSdImage {
    module = {
        armv6l-linux = ./modules/installer/cd-dvd/sd-image-raspberrypi.nix;
        armv7l-linux = ./modules/installer/cd-dvd/sd-image-armv7l-multiplatform.nix;
        aarch64-linux = ./modules/installer/cd-dvd/sd-image-aarch64.nix;
      }.${system};
    inherit system;
  });