Browse Source

Fixing some section names

Antony Messerli 9 years ago
parent
commit
d725d09e83
2 changed files with 5 additions and 5 deletions
  1. 3 3
      ipxe/netboot.xyz-dhcp
  2. 2 2
      ipxe/netboot.xyz-static

+ 3 - 3
ipxe/netboot.xyz-dhcp

@@ -8,7 +8,7 @@ goto dhcp
 :dhcp  
 dhcp || goto static
 prompt --key m --timeout 4000 Hit the ${bold}d${boldoff} key to open the debug console && goto debug || goto start
-goto start
+goto menu
 
 :static
 echo DHCP Server not found, enabling manual override:
@@ -20,9 +20,9 @@ echo -n Gateway: && read net0/gateway
 echo -n DNS: && read dns
 ifopen net0
 echo Attempting chainload of netboot.xyz...
-goto start || goto failsafe
+goto menu || goto failsafe
 
-:start
+:menu
 chain --autofree http://cdn.netboot.xyz/menu.ipxe
 goto boot
 

+ 2 - 2
ipxe/netboot.xyz-static

@@ -16,9 +16,9 @@ echo -n Gateway: && read net0/gateway
 echo -n DNS: && read dns
 ifopen net0
 echo Attempting chainload of netboot.xyz...
-goto start || goto failsafe
+goto menu || goto failsafe
 
-:start
+:menu
 chain --autofree http://cdn.netboot.xyz/menu.ipxe
 goto boot