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 428B

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