mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-26 10:52:57 +02:00
this is only needed on systems that support both video out and serial console to force serial.
57 lines
1.4 KiB
INI
57 lines
1.4 KiB
INI
set default="0"
|
|
|
|
function load_video {
|
|
insmod efi_gop
|
|
insmod efi_uga
|
|
insmod video_bochs
|
|
insmod video_cirrus
|
|
insmod all_video
|
|
}
|
|
|
|
load_video
|
|
set gfxpayload=keep
|
|
insmod gzio
|
|
insmod part_gpt
|
|
insmod ext2
|
|
|
|
set timeout=60
|
|
|
|
menuentry 'Install NAME VERSION ARCH' --class ipfire --class gnu-linux --class gnu --class os {
|
|
linux /boot/isolinux/vmlinuz
|
|
initrd /boot/isolinux/instroot
|
|
}
|
|
|
|
submenu 'Other Installation Options -->' {
|
|
menuentry 'Install NAME VERSION (Text Mode)' --class ipfire --class gnu-linux --class gnu --class os {
|
|
linux /boot/isolinux/vmlinuz novga
|
|
initrd /boot/isolinux/instroot
|
|
}
|
|
|
|
menuentry 'Unattended installation' --class ipfire --class gnu-linux --class gnu --class os {
|
|
linux /boot/isolinux/vmlinuz installer.unattended
|
|
initrd /boot/isolinux/instroot
|
|
}
|
|
}
|
|
|
|
submenu 'Serial Console -->' {
|
|
menuentry 'Install NAME VERSION ARCH (serial console)' --class ipfire --class gnu-linux --class gnu --class os {
|
|
linux /boot/isolinux/vmlinuz console=ttyS0,115200n8 novga
|
|
initrd /boot/isolinux/instroot
|
|
}
|
|
|
|
menuentry 'Unattended installation (serial console)' --class ipfire --class gnu-linux --class gnu --class os {
|
|
linux /boot/isolinux/vmlinuz installer.unattended console=ttyS0,115200n8 novga
|
|
initrd /boot/isolinux/instroot
|
|
}
|
|
|
|
menuentry 'memtest86+ (serial console)' {
|
|
linux /boot/isolinux/memtest console=ttyS0,115200n8
|
|
}
|
|
}
|
|
|
|
submenu 'Tools -->' {
|
|
menuentry 'memtest86+' {
|
|
linux /boot/isolinux/memtest
|
|
}
|
|
}
|