summary refs log tree commit diff
path: root/modules/installer/cd-dvd/system-tarball-sheevaplug.nix
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2011-01-15 22:38:28 +0000
committerLudovic Courtès <ludo@gnu.org>2011-01-15 22:38:28 +0000
commitc56e039107beaf96c5c23101d886b52232b4ebe4 (patch)
tree2025befd870fe637fbdef89120a035c334afa1da /modules/installer/cd-dvd/system-tarball-sheevaplug.nix
parenta634fd84bf63691390afe56b7d5e1a8f15efddbe (diff)
downloadnixpkgs-c56e039107beaf96c5c23101d886b52232b4ebe4.tar
nixpkgs-c56e039107beaf96c5c23101d886b52232b4ebe4.tar.gz
nixpkgs-c56e039107beaf96c5c23101d886b52232b4ebe4.tar.bz2
nixpkgs-c56e039107beaf96c5c23101d886b52232b4ebe4.tar.lz
nixpkgs-c56e039107beaf96c5c23101d886b52232b4ebe4.tar.xz
nixpkgs-c56e039107beaf96c5c23101d886b52232b4ebe4.tar.zst
nixpkgs-c56e039107beaf96c5c23101d886b52232b4ebe4.zip
system-tarball-sheevaplug: Fix `kernelparams.txt'.
This is a followup to r23775 ("Substitute the path of the system
derivation directly in the stage 2 init script.").

svn path=/nixos/trunk/; revision=25582
Diffstat (limited to 'modules/installer/cd-dvd/system-tarball-sheevaplug.nix')
-rw-r--r--modules/installer/cd-dvd/system-tarball-sheevaplug.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/installer/cd-dvd/system-tarball-sheevaplug.nix b/modules/installer/cd-dvd/system-tarball-sheevaplug.nix
index 77e09ec2265..177496c24c7 100644
--- a/modules/installer/cd-dvd/system-tarball-sheevaplug.nix
+++ b/modules/installer/cd-dvd/system-tarball-sheevaplug.nix
@@ -42,7 +42,7 @@ let
   # 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.toplevel}/init ${toString config.boot.kernelParams}
   '';