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
This commit is contained in:
Ludovic Courtès 2011-01-15 22:38:28 +00:00
parent a634fd84bf
commit c56e039107

View file

@ -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}
'';