diff options
| author | Tuomas Tynkkynen <tuomas.tynkkynen@iki.fi> | 2018-04-15 05:32:59 +0300 |
|---|---|---|
| committer | Tuomas Tynkkynen <tuomas.tynkkynen@iki.fi> | 2018-04-16 03:40:12 +0300 |
| commit | 41c22102eaeb110dc69ced1c680252da5d1b3634 (patch) | |
| tree | a65388b86f68fe453043742acc6d413195370515 | |
| parent | nixos/installer/channel: Add some files that the channel also has (diff) | |
| download | nixpkgs-origin/unstable-aarch64.tar.gz | |
nixos/release.nix: Add SD images for ARMv6 + ARMv7origin/unstable-aarch64gitlab.intr/unstable-aarch64
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.
| -rw-r--r-- | nixos/release.nix | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/nixos/release.nix b/nixos/release.nix index 43c641f32c46..7c066f8ee9e5 100644 --- a/nixos/release.nix +++ b/nixos/release.nix @@ -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; }); |
