3
0
Fork 0
forked from mirrors/nixpkgs

Trying to fix again system-tarball-pc (again, the kernel file name)

svn path=/nixos/branches/stdenv-updates/; revision=23824
This commit is contained in:
Lluís Batlle i Rossell 2010-09-16 19:24:52 +00:00
parent 7672c36a70
commit 83d012ba13

View file

@ -171,8 +171,8 @@ in
tarball.storeContents = pkgs2storeContents [ pkgs.stdenv pkgs.klibc pkgs.klibcShrunk ];
tarball.contents =
[ { source = config.boot.kernelPackages.kernel + "/vmlinuz";
target = "/boot/vmlinuz";
[ { source = config.boot.kernelPackages.kernel + config.system.boot.loader.kernelFile;
target = "/boot/" + config.system.boot.loader.kernelFile;
}
];