summary refs log tree commit diff
path: root/release.nix
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2010-09-08 16:53:36 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2010-09-08 16:53:36 +0000
commitccf7852e115fd4d5a7dd0255f2f18debc4dcd1ed (patch)
tree67aad58d65992696bae3281d71161928799e7521 /release.nix
parent7fe1c5fe90a24780ca52c1315f76416a4bdbe2c2 (diff)
downloadnixpkgs-ccf7852e115fd4d5a7dd0255f2f18debc4dcd1ed.tar
nixpkgs-ccf7852e115fd4d5a7dd0255f2f18debc4dcd1ed.tar.gz
nixpkgs-ccf7852e115fd4d5a7dd0255f2f18debc4dcd1ed.tar.bz2
nixpkgs-ccf7852e115fd4d5a7dd0255f2f18debc4dcd1ed.tar.lz
nixpkgs-ccf7852e115fd4d5a7dd0255f2f18debc4dcd1ed.tar.xz
nixpkgs-ccf7852e115fd4d5a7dd0255f2f18debc4dcd1ed.tar.zst
nixpkgs-ccf7852e115fd4d5a7dd0255f2f18debc4dcd1ed.zip
Updating the system-tarball work, having just tested that of the fuloong2f.
svn path=/nixos/branches/stdenv-updates/; revision=23689
Diffstat (limited to 'release.nix')
-rw-r--r--release.nix12
1 files changed, 9 insertions, 3 deletions
diff --git a/release.nix b/release.nix
index d0ae398289f..dacbeab0cbe 100644
--- a/release.nix
+++ b/release.nix
@@ -49,9 +49,7 @@ let
     }:
 
     with import nixpkgs {inherit system;};
-
     let
-
       version = builtins.readFile ./VERSION + (if officialRelease then "" else "pre${toString nixosSrc.rev}");
 
       versionModule = { system.nixosVersion = version; };
@@ -60,7 +58,7 @@ let
         inherit system nixpkgs;
         modules = [ module versionModule ];
       }).config;
-      
+
       tarball = config.system.build.tarball;
     in
       tarball //
@@ -136,6 +134,14 @@ let
       module = ./modules/installer/cd-dvd/system-tarball-pc.nix;
     };
 
+    system_tarball_fuloong2f = makeSystemTarball {
+      module = ./modules/installer/cd-dvd/system-tarball-fuloong2f.nix;
+    } { system = "mips64-linux"; };
+
+    system_tarball_sheevaplug = makeSystemTarball {
+      module = ./modules/installer/cd-dvd/system-tarball-sheevaplug.nix;
+    } { system = "armv5tel-linux"; };
+
     # Hacky: doesn't depend on configuration. Yet configuration is evaluated (TODO)
     minimal_install_archive = {system ? "i686-linux"}: (iso_minimal {inherit system;})
       .config.system.build.minimalInstallArchive;