You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

script.ipxe 374B

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