blob: ac61f3208c22bdae70961b21a956235859d436c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# Note the initrd command becomes not working if the command for
# loading image is changed to the chainloader command instead of
# the linux command.
menuentry "Sample EFI boot" --unrestricted {
savedefault
set fallback=1
linux /bzImage root=/dev/hda2 ro rootwait
initrd /initrd
}
menuentry "Sample EFI boot (Recovery)" --unrestricted {
linux /bzImage_backup root=/dev/hda2 ro rootwait
initrd /initrd_backup
}
|