adding example files/hierarchy for HTTP ipxe

This commit is contained in:
2015-07-05 04:33:33 -04:00
parent 334cf89cb5
commit 7e16ab2b9a
13 changed files with 34 additions and 6 deletions

9
examples/HTTP/boot.php Normal file
View File

@@ -0,0 +1,9 @@
<?php
print '#!ipxe
cpuid --ext 29 && set bit_type 64 || set bit_type 32
initrd example.${bit_type}.img
kernel example.${bit_type}.kern initrd=example.${bit_type}.img ip=:::::eth0:dhcp archiso_http_srv=http://domain.tld/path/to/squashes/ archisobasedir=EXAMPLE archisolabel=EXAMPLE checksum=y
boot
'
?>