|
#!ipxe |
|
|
|
########## code starts here ######### |
|
:start |
|
|
|
menu bifrost netboot for ${initiator-iqn} |
|
#tem --gap -- ------------------------- ------------------------------ |
|
item --gap -- ------------------------- Tools ------------------------------ |
|
item memtest Memtest86 |
|
item grub Grub4Dos |
|
item xubuntu Xubuntu |
|
item gentoomin Gentoo |
|
item fedorainstall Fedora Installer |
|
item freedos FreeDOS |
|
item freedosinstall FreeDOS Installer |
|
item winpe WinPE |
|
item --gap -- ------------------------- iSCSI ------------------------------ |
|
item iscsiinit Set iSCSI initiator |
|
item iscsihook Hook iSCSI target |
|
item iscsiboot Boot iSCSI target |
|
item --gap -- ------------------------- PXE ------------------------------ |
|
item --key m masq Masquerade as... |
|
item --key c config (c)onfigure iPXE |
|
item shell drop to iPXE shell |
|
item reboot reboot |
|
item --key x exit e(x)it and continue BIOS boot |
|
choose --timeout ${menutimeout} --default ${menudefault} selected || goto cancel |
|
set menutimeout 0 |
|
goto ${selected} |
|
|
|
:cancel |
|
echo menu cancelled, dropping to shell |
|
|
|
:shell |
|
echo type 'exit' to get back to the menu |
|
shell |
|
goto start |
|
|
|
:failed |
|
echo something failed, dropping to shell |
|
goto shell |
|
|
|
:reboot |
|
reboot |
|
|
|
:exit |
|
exit |
|
|
|
:config |
|
config |
|
goto start |
|
|
|
:masq |
|
echo -n Masquerade as: && read masqas || goto start |
|
set name ${masqas} |
|
chain --autofree variables.ipxe || |
|
chain --autofree names/${name}.ipxe || |
|
chain --autofree --replace default.ipxe || goto failed |
|
goto start |
|
|
|
######## iSCSI ######## |
|
|
|
:iscsiinit |
|
echo -n Initiator IQN: && read initiator-iqn || goto start |
|
goto start |
|
|
|
:iscsihook |
|
set hookdrive ${iscsiroot}:${name}. |
|
echo -n Target to hook: && read hookdrive || goto start |
|
sanhook --drive 0x80 ${hookdrive} || goto failed |
|
goto start |
|
|
|
:iscsiboot |
|
set bootdrive ${iscsiroot}:${name}. |
|
echo -n Target to boot: && read bootdrive || goto start |
|
sanboot --drive 0x80 ${bootdrive} || goto failed |
|
goto start |
|
|
|
######## Tools ######## |
|
|
|
:memtest |
|
echo booting memtest86 |
|
chain memtest86 || goto failed |
|
goto start |
|
|
|
:grub |
|
# from http://ipxe.org/appnote/work_around_bios_halting_on_ipxe_exit |
|
echo booting grub4dos |
|
chain ${grub4dos} --config-file="commandline" || goto failed |
|
goto start |
|
|
|
:xubuntu |
|
# following guide from http://www.howtogeek.com/61263/ |
|
echo booting xubuntu |
|
kernel ${xubuntupath}/casper/vmlinuz root=/dev/nfs boot=casper netboot=nfs nfsroot=${nfsroot}/${xubuntupath} initrd=${xubuntupath}/casper/initrd.lz -- |
|
initrd ${xubuntupath}/casper/initrd.lz |
|
boot || goto failed |
|
goto start |
|
|
|
:gentoomin |
|
# created using the method outlined at: http://blog.dastrup.com/?p=12 |
|
echo booting gentoo minimal |
|
kernel ${gentoopath}/gentoo initrd=gentoo.igz root=/dev/ram0 init=/linuxrc loop=/image.squashfs cdroot real_root=/ dokeymap vga=791 nodhcp |
|
initrd ${gentoopath}/gentoo.igz |
|
boot || goto failed |
|
goto start |
|
|
|
:fedorainstall |
|
# from http://ipxe.org/howto/fedora |
|
echo booting fedora installer |
|
kernel ${fedorarepo}/images/pxeboot/vmlinuz initrd=initrd.img repo=${fedorarepo} |
|
initrd ${fedorarepo}/images/pxeboot/initrd.img |
|
boot || goto failed |
|
goto start |
|
|
|
:freedosinstall |
|
echo booting freedos installer |
|
#sanboot --drive 0x81 ${root}/${freedospath}/fd11src.iso || goto failed |
|
initrd ${freedospath}/fd11src.iso |
|
chain ${memdisk} iso || goto failed |
|
goto start |
|
|
|
:freedos |
|
echo booting freedos |
|
#sanboot --drive 0x81 ${root}/${freedospath}/fdfullws.iso || goto failed |
|
initrd ${freedospath}/fdfullws.iso |
|
chain ${memdisk} iso || goto failed |
|
goto start |
|
|
|
:winpe |
|
# slighly modified from http://ipxe.org/wimboot |
|
# images created using copype.cmd, and copied directly |
|
# http://technet.microsoft.com/en-us/library/cc709665(v=ws.10).aspx |
|
# modified to have my realtek nic drivers |
|
echo booting winpe |
|
initrd ${winpepath}/ISO/bootmgr bootmgr |
|
initrd ${winpepath}/ISO/boot/bcd BCD |
|
initrd ${winpepath}/ISO/boot/boot.sdi boot.sdi |
|
initrd ${winpepath}/winpe.wim boot.wim |
|
chain ${wimboot} || goto failed |
|
goto start |