[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, 2:34 PM +0100) 5768b4d6 99951486

+37 -3
+37 -3
boot.ipxe
··· 1 1 #!ipxe 2 2 3 - #console --picture http://boot.ipxe.org/ipxe.png 4 3 echo It works! 5 4 5 + 6 + :start 7 + chain --autofree boot.cfg || 8 + iseq ${cls} serial && goto ignore_cls || 9 + set cls:hex 1b:5b:4a # ANSI clear screen sequence - "^[[J" 10 + set cls ${cls:string} 11 + :ignore_cls 12 + 6 13 ## MAIN MENU ## 7 14 8 15 :menu 9 16 menu Mawersoft iPXE Boot Menu 10 - item --gap Boot from 11 - item netboot NetBoot.xyz 17 + item --gap Boot Locations 18 + item minixp MiniXP 19 + item netboot (C) NetBoot.xyz 12 20 item --gap Advanced Options 13 21 item --key c config Configure settings 14 22 item shell Drop to iPXE shell 15 23 item reload Reload script 24 + item netinfo Network Information 16 25 item --gap Power Options 17 26 item reboot Reboot computer 18 27 item shutdown Shutdown computer ··· 37 46 echo Booting failed, dropping to shell 38 47 goto shell 39 48 49 + :minixp 50 + initrd /images/mxp14.iso 51 + chain /memdisk iso raw || goto failed 52 + 40 53 :netboot 41 54 chain http://boot.netboot.xyz 42 55 goto menu 56 + 57 + :netinfo 58 + menu Network info 59 + item --gap MAC: 60 + item mac ${space} ${netX/mac} 61 + item --gap IP/mask: 62 + item ip ${space} ${netX/ip}/${netX/netmask} 63 + item --gap Gateway: 64 + item gw ${space} ${netX/gateway} 65 + item --gap Domain: 66 + item domain ${space} ${netX/domain} 67 + item --gap DNS: 68 + item dns ${space} ${netX/dns} 69 + item --gap DHCP server: 70 + item dhcpserver ${space} ${netX/dhcp-server} 71 + item --gap Next-server: 72 + item nextserver ${space} ${next-server} 73 + item --gap Filename: 74 + item filename ${space} ${netX/filename} 75 + choose empty || 76 + goto main_menu 43 77 44 78 :shutdown 45 79 shutdown