mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-11 11:35:54 +02:00
35 lines
793 B
INI
35 lines
793 B
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
|
|
}
|
|
}
|