2012-09-22 20:10:42 +00:00
|
|
|
@SERIAL_CONFIG@
|
|
|
|
@TERMINAL_CONFIG@
|
|
|
|
|
|
|
|
set default="0"
|
|
|
|
set timeout="@TIMEOUT@"
|
2016-11-11 13:50:00 +00:00
|
|
|
set root='(@ROOT@)'
|
2012-09-22 20:10:42 +00:00
|
|
|
|
2018-06-05 13:47:05 +00:00
|
|
|
menuentry "@TITLE@" {
|
2012-10-09 15:20:11 +00:00
|
|
|
linux /boot/vmlinuz @CMDLINE@ noinitrd
|
2018-10-31 17:48:37 +00:00
|
|
|
set amd="/boot/amd-ucode.img"
|
|
|
|
set intel="/boot/intel-ucode.img"
|
|
|
|
if [ -s "$amd" ]; then
|
|
|
|
initrd $amd $intel
|
|
|
|
fi
|
|
|
|
if [ -s "$intel" ]; then
|
|
|
|
initrd $intel $amd
|
2018-11-20 16:20:43 +00:00
|
|
|
fi
|
2012-09-22 20:10:42 +00:00
|
|
|
}
|
2018-06-05 13:47:05 +00:00
|
|
|
menuentry "@TITLE@ (failsafe)" {
|
2012-10-09 15:20:11 +00:00
|
|
|
linux /boot/vmlinuz failsafe=true @CMDLINE@ noinitrd
|
2012-09-22 20:10:42 +00:00
|
|
|
}
|