17 lines
494 B
Text
17 lines
494 B
Text
#!gpxe
|
|
echo Attempting to start boot.fedoraproject.org
|
|
echo Setting up networking...
|
|
echo
|
|
imgload static.gpxe
|
|
imgstat
|
|
echo Opening first network interface ...
|
|
ifopen net0
|
|
echo If you don't have DHCP, then hit Control+C to cancel
|
|
dhcp net0
|
|
set 209:string pxelinux.cfg/default
|
|
set 210:string http://alt.fedoraproject.org/pub/alt/bfo/
|
|
echo Here we go!
|
|
chain http://alt.fedoraproject.org/pub/alt/bfo/pxelinux.0
|
|
dhcp net0
|
|
kernel http://alt.fedoraproject.org/pub/alt/bfo/fedora.gpxe
|
|
boot fedora.gpxe
|