From 3b216865d22301a0b7b85a0f34198704b9849923 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Thu, 16 Sep 2010 19:25:29 +0000 Subject: [PATCH] Writing better some sheevaplug system-tarball lines (kernel parameters in a single line, for example) svn path=/nixos/branches/stdenv-updates/; revision=23825 --- modules/installer/cd-dvd/system-tarball-sheevaplug.nix | 6 ++---- 1 file 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} '';