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

authored by

Jack and committed by
GitHub
(Apr 15, 2017, 2:28 PM +0100) 99951486 064cfe92

+25
+25
boot.cfg
··· 1 + #!ipxe 2 + 3 + # set site name 4 + set site_name ipxe.mawersoft.co.uk 5 + 6 + # set boot domain 7 + set boot_domain ipxe.mawersoft.co.uk 8 + 9 + # set location of memdisk 10 + set memdisk http://${boot_domain}/memdisk 11 + 12 + # set iPXE cloud provider specifics 13 + :clouds 14 + iseq ${ipxe_cloud_config} gce && goto gce || 15 + iseq ${ipxe_cloud_config} packet && goto packet || 16 + exit 17 + 18 + :gce 19 + set console console=ttyS0,115200n8 20 + exit 21 + 22 + :packet 23 + set console console=ttyS1,115200n8 24 + set ipxe_disk netboot.xyz-packet.kpxe 25 + exit