summary refs log tree commit diff
path: root/modules/installer/cd-dvd/system-tarball-sheevaplug.nix
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2010-09-16 19:25:29 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2010-09-16 19:25:29 +0000
commit3b216865d22301a0b7b85a0f34198704b9849923 (patch)
tree343c166e127ddfd79527089c6ead9b365d0fc3c6 /modules/installer/cd-dvd/system-tarball-sheevaplug.nix
parent83d012ba13c03ec373baa2b4cc0abbf8b6674e7d (diff)
downloadnixpkgs-3b216865d22301a0b7b85a0f34198704b9849923.tar
nixpkgs-3b216865d22301a0b7b85a0f34198704b9849923.tar.gz
nixpkgs-3b216865d22301a0b7b85a0f34198704b9849923.tar.bz2
nixpkgs-3b216865d22301a0b7b85a0f34198704b9849923.tar.lz
nixpkgs-3b216865d22301a0b7b85a0f34198704b9849923.tar.xz
nixpkgs-3b216865d22301a0b7b85a0f34198704b9849923.tar.zst
nixpkgs-3b216865d22301a0b7b85a0f34198704b9849923.zip
Writing better some sheevaplug system-tarball lines (kernel parameters in a single line, for example)
svn path=/nixos/branches/stdenv-updates/; revision=23825
Diffstat (limited to 'modules/installer/cd-dvd/system-tarball-sheevaplug.nix')
-rw-r--r--modules/installer/cd-dvd/system-tarball-sheevaplug.nix6
1 files changed, 2 insertions, 4 deletions
diff --git a/modules/installer/cd-dvd/system-tarball-sheevaplug.nix b/modules/installer/cd-dvd/system-tarball-sheevaplug.nix
index 745e756a0b4..5eb0cd503d7 100644
--- a/modules/installer/cd-dvd/system-tarball-sheevaplug.nix
+++ b/modules/installer/cd-dvd/system-tarball-sheevaplug.nix
@@ -39,12 +39,10 @@ let
     };
   };
 
-  # A clue for the uboot loading
+  # A clue for the kernel loading
   kernelParams = pkgs.writeText "kernel-params.txt" ''
     Kernel Parameters:
-      init=${config.system.build.bootStage2}
-      systemConfig=${config.system.build.toplevel}
-      ${toString config.boot.kernelParams}
+      init=${config.system.build.bootStage2} systemConfig=${config.system.build.toplevel} ${toString config.boot.kernelParams}
   '';