* When generating a GRUB 1 menu, don't use the "module" command to

load the initrd, because pv-grub doesn't like it.

svn path=/nixos/trunk/; revision=24068
This commit is contained in:
Eelco Dolstra 2010-10-05 13:11:30 +00:00
parent ac7ef33e4a
commit 17213c4f2a

@ -200,7 +200,7 @@ title $name
@extraPerEntryConfig@
${xen:+kernel $xen $xenParams}
$(if [ -z "$xen" ]; then echo kernel; else echo module; fi) $kernel $kernelParams
module $initrd
$(if [ -z "$xen" ]; then echo initrd; else echo module; fi) $initrd
GRUBEND
;;
2)