mirror of
https://github.com/nchevsky/systemrescue-zfs.git
synced 2026-01-06 00:29:58 +01:00
30 lines
905 B
INI
30 lines
905 B
INI
# Global options
|
|
set timeout=90
|
|
set default=0
|
|
set fallback=1
|
|
set pager=1
|
|
|
|
# Display settings
|
|
if loadfont /boot/grub/font.pf2 ; then
|
|
set gfxmode=auto
|
|
insmod efi_gop
|
|
insmod efi_uga
|
|
insmod gfxterm
|
|
insmod all_video
|
|
insmod videotest
|
|
insmod videoinfo
|
|
terminal_output gfxterm
|
|
fi
|
|
|
|
menuentry "Boot SystemRescueCd using default options" {
|
|
set gfxpayload=keep
|
|
linux /%INSTALL_DIR%/boot/%ISO_ARCH%/vmlinuz archisobasedir=%INSTALL_DIR% archisolabel=%ARCHISO_LABEL%
|
|
initrd /%INSTALL_DIR%/boot/intel_ucode.img /%INSTALL_DIR%/boot/amd_ucode.img /%INSTALL_DIR%/boot/%ISO_ARCH%/sysresccd.img
|
|
}
|
|
|
|
menuentry "Boot SystemRescueCd and copy system to RAM" {
|
|
set gfxpayload=keep
|
|
linux /%INSTALL_DIR%/boot/%ISO_ARCH%/vmlinuz archisobasedir=%INSTALL_DIR% archisolabel=%ARCHISO_LABEL% copytoram
|
|
initrd /%INSTALL_DIR%/boot/intel_ucode.img /%INSTALL_DIR%/boot/amd_ucode.img /%INSTALL_DIR%/boot/%ISO_ARCH%/sysresccd.img
|
|
}
|