* 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:
parent
ac7ef33e4a
commit
17213c4f2a
|
@ -200,7 +200,7 @@ title $name
|
||||||
@extraPerEntryConfig@
|
@extraPerEntryConfig@
|
||||||
${xen:+kernel $xen $xenParams}
|
${xen:+kernel $xen $xenParams}
|
||||||
$(if [ -z "$xen" ]; then echo kernel; else echo module; fi) $kernel $kernelParams
|
$(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
|
GRUBEND
|
||||||
;;
|
;;
|
||||||
2)
|
2)
|
||||||
|
|
Loading…
Reference in New Issue