You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
586 B
26 lines
586 B
submenu "Addons ->" --class=submenu {
|
|
menuentry "iPXE - boot via network/PXE" {
|
|
if [ "${grub_platform}" == "efi" ] ; then
|
|
chainloader /boot/addons/ipxe.efi
|
|
else
|
|
insmod linux16
|
|
linux16 /boot/addons/ipxe.lkrn
|
|
fi
|
|
}
|
|
|
|
menuentry "Netboot.xyz" {
|
|
if [ "${grub_platform}" == "efi" ] ; then
|
|
chainloader /boot/addons/netboot.xyz.efi
|
|
else
|
|
insmod linux16
|
|
linux16 /boot/addons/netboot.xyz.lkrn
|
|
fi
|
|
}
|
|
|
|
menuentry "Boot OS of first partition on first disk" {
|
|
set root=(hd0,1)
|
|
chainloader +1
|
|
}
|
|
|
|
}
|