Writing better some sheevaplug system-tarball lines (kernel parameters in a single line, for example)

svn path=/nixos/branches/stdenv-updates/; revision=23825
This commit is contained in:
Lluís Batlle i Rossell 2010-09-16 19:25:29 +00:00
parent 83d012ba13
commit 3b216865d2
1 changed files with 2 additions and 4 deletions

View File

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