mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-09 18:45:54 +02:00
This is now a version 64bit version that can also boot via efi. Signed-off-by: Arne Fitzenreiter <arne_f@ipfire.org>
41 lines
878 B
INI
41 lines
878 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
|
|
}
|
|
}
|
|
|
|
submenu 'Tools -->' {
|
|
menuentry 'memtest86+' {
|
|
linux /boot/isolinux/memtest
|
|
}
|
|
}
|