|
@@ -1,4 +1,25 @@
|
1
|
1
|
#!ipxe
|
2
|
2
|
|
3
|
|
-dhcp
|
4
|
|
-chain http://netboot/boot.ipxe
|
|
3
|
+dhcp && isset ${filename} || goto fallback
|
|
4
|
+echo Booting from ${filename}
|
|
5
|
+chain ${filename}
|
|
6
|
+
|
|
7
|
+:fallback
|
|
8
|
+menu Fallback PXE
|
|
9
|
+
|
|
10
|
+item --gap -- Misc
|
|
11
|
+item chain-online Chain on rthoni.com
|
|
12
|
+item shell Shell
|
|
13
|
+item reboot Reboot
|
|
14
|
+choose choice && goto ${choice}
|
|
15
|
+
|
|
16
|
+:chain-online
|
|
17
|
+chain http://netboot.rthoni.com/boot.ipxe
|
|
18
|
+
|
|
19
|
+:shell
|
|
20
|
+shell
|
|
21
|
+
|
|
22
|
+:reboot
|
|
23
|
+reboot
|
|
24
|
+
|
|
25
|
+#chain http://netboot/boot.ipxe
|