2012-10-07 23:01:52 +00:00
|
|
|
@SERIAL_CONFIG@
|
|
|
|
@TERMINAL_CONFIG@
|
|
|
|
|
|
|
|
set default="0"
|
|
|
|
set timeout="@TIMEOUT@"
|
|
|
|
set root='(cd)'
|
|
|
|
|
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-10-07 23:01:52 +00:00
|
|
|
}
|