diff options
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/scripts/gpxelinux.gpxe | 4 | ||||
-rw-r--r-- | contrib/scripts/static.gpxe | 8 |
2 files changed, 12 insertions, 0 deletions
diff --git a/contrib/scripts/gpxelinux.gpxe b/contrib/scripts/gpxelinux.gpxe new file mode 100644 index 00000000..dcfc80e6 --- /dev/null +++ b/contrib/scripts/gpxelinux.gpxe @@ -0,0 +1,4 @@ +#!gpxe +dhcp net0 +imgload img1 +boot img1 diff --git a/contrib/scripts/static.gpxe b/contrib/scripts/static.gpxe new file mode 100644 index 00000000..e3539fc0 --- /dev/null +++ b/contrib/scripts/static.gpxe @@ -0,0 +1,8 @@ +#!gpxe +ifopen net0 +set net0/ip 10.0.2.15 +set net0/netmask 255.255.255.0 +set net0/gateway 10.0.2.2 +set net0/dns 10.0.2.3 +kernel http://etherboot.org/gtest/gtest.gpxe +boot gtest.gpxe |