[READ-ONLY] Mirror of https://github.com/jackmawer/ipxe. My personal iPXE configuration/playground
0

Configure Feed

Select the types of activity you want to include in your feed.

Update boot.ipxe

authored by

Jack and committed by
GitHub
(Apr 15, 2017, 1:52 PM +0100) c1774411 4acb1f91

+21 -22
+21 -22
boot.ipxe
··· 5 5 6 6 ## MAIN MENU ## 7 7 8 - :start 8 + :menu 9 9 menu iPXE boot menu for ${initiator-iqn} 10 - item --gap -- ------------------------- Operating systems ------------------------------ 11 - item --key f freedos Boot FreeDOS from iSCSI 12 - item --key m msdos Boot MS-DOS from iSCSI 13 - item --key u ubuntu Boot Ubuntu from iSCSI 14 - item --key v vmware Boot VMware ESXi from iSCSI 15 - item --key w windows7 Boot Windows 7 from iSCSI 16 - item --key l menu-live Live environments... 17 - item --gap -- ------------------------- Tools and utilities ---------------------------- 18 - item --key p pxelinux Load PXELinux menu 19 - item --key r menu-recovery Recovery tools... 20 - item --key d menu-diag Diagnostics tools... 21 - item --key i menu-install Installers... 22 - item --gap -- ------------------------- Advanced options ------------------------------- 10 + item --gap Boot from 11 + item netboot NetBoot.xyz 12 + item --gap Advanced Options 23 13 item --key c config Configure settings 24 14 item shell Drop to iPXE shell 15 + item reload Reload script 16 + item --gap Power Options 25 17 item reboot Reboot computer 18 + item shutdown Shutdown computer 26 19 item 27 - item --key x exit Exit iPXE and continue BIOS boot 20 + item --key x exit Exit 28 21 choose --timeout ${menu-timeout} --default ${menu-default} selected || goto cancel 29 22 set menu-timeout 0 30 23 goto ${selected} 31 24 32 25 :cancel 33 26 echo You cancelled the menu, dropping you to a shell 27 + goto shell 34 28 35 29 :shell 36 30 echo Type 'exit' to get the back to the menu 37 31 shell 38 32 set menu-timeout 0 39 33 set submenu-timeout 0 40 - goto start 34 + goto menu 41 35 42 36 :failed 43 37 echo Booting failed, dropping to shell 44 38 goto shell 39 + 40 + :netboot 41 + chain http://boot.netboot.xyz 42 + goto menu 43 + 44 + :shutdown 45 + shutdown 45 46 46 47 :reboot 47 48 reboot ··· 51 52 52 53 :config 53 54 config 54 - goto start 55 + goto menu 55 56 56 57 :back 57 58 set submenu-timeout 0 58 59 clear submenu-default 59 - goto start 60 - 61 - ## MENU ITEMS ## 60 + goto menu 62 61 63 - :loop 62 + :reload 64 63 imgfree 65 64 chain http://ipxe.mawersoft.co.uk/boot.ipxe || 66 - goto loop 65 + goto reload