From c56e039107beaf96c5c23101d886b52232b4ebe4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Sat, 15 Jan 2011 22:38:28 +0000 Subject: [PATCH] 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 --- modules/installer/cd-dvd/system-tarball-sheevaplug.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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} '';