[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:26 PM +0100) 4acb1f91 cb308f5e

+58 -2
+58 -2
boot.ipxe
··· 2 2 3 3 #console --picture http://boot.ipxe.org/ipxe.png 4 4 echo It works! 5 + 6 + ## MAIN MENU ## 7 + 8 + :start 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 ------------------------------- 23 + item --key c config Configure settings 24 + item shell Drop to iPXE shell 25 + item reboot Reboot computer 26 + item 27 + item --key x exit Exit iPXE and continue BIOS boot 28 + choose --timeout ${menu-timeout} --default ${menu-default} selected || goto cancel 29 + set menu-timeout 0 30 + goto ${selected} 31 + 32 + :cancel 33 + echo You cancelled the menu, dropping you to a shell 34 + 35 + :shell 36 + echo Type 'exit' to get the back to the menu 37 + shell 38 + set menu-timeout 0 39 + set submenu-timeout 0 40 + goto start 41 + 42 + :failed 43 + echo Booting failed, dropping to shell 44 + goto shell 45 + 46 + :reboot 47 + reboot 48 + 49 + :exit 50 + exit 51 + 52 + :config 5 53 config 6 - prompt --key 0x02 --timeout 2000 Press Ctrl-B for the iPXE command line... && shell || 54 + goto start 55 + 56 + :back 57 + set submenu-timeout 0 58 + clear submenu-default 59 + goto start 60 + 61 + ## MENU ITEMS ## 62 + 7 63 :loop 8 64 imgfree 9 65 chain http://ipxe.mawersoft.co.uk/boot.ipxe || 10 - goot loop 66 + goto loop