[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.

Create boot.ipxe

authored by

Jack and committed by
GitHub
(Apr 30, 2019, 3:29 PM +0100) 970c4df1 09c166a1

+12
+12
boot.ipxe
··· 1 + #!ipxe 2 + #This is the embedded script for initializing iPXE 3 + 4 + :dhcp 5 + prompt --key 0x02 --timeout 2000 Press Ctrl-B for the iPXE command line... && shell || 6 + echo Trying DHCP... 7 + dhcp 8 + echo IP address: ${net0/ip} ; echo Subnet mask: ${net0/netmask} 9 + prompt --key 0x02 --timeout 2000 Press Ctrl-B for the iPXE command line... && shell || 10 + chain http://ipxe.mawersoft.co.uk/main.ipxe || goto dhcp 11 + prompt --key 0x02 --timeout 2000 Press Ctrl-B for the iPXE command line... && shell || 12 + exit