linux.ipxe 870 B

1234567891011121314151617181920212223242526272829303132333435
  1. #!ipxe
  2. isset ${server-ip} || set server-ip www.adriankoshka.xyz
  3. goto start
  4. :start
  5. menu Linux
  6. item --gap -- ------------------------- Choose a distro ------------------------------
  7. item --key d deb (D)ebian
  8. item --key b dban Dariks (B)oot and Nuke
  9. item --key f fed (F)edora Based
  10. item --key o opnse (O)penSUSE
  11. item --key u ubu (U)buntu
  12. item --gap -- ---------------------------- Options -----------------------------------
  13. item --key g goback (G)o Back to previous menu
  14. choose version && goto ${version} || goto start
  15. :deb
  16. chain http://${server-ip}/boot/linux/debian.ipxe
  17. :dban
  18. chain http://${server-ip}/boot/linux/dban.ipxe
  19. :opnse
  20. chain http://${server-ip}/boot/linux/opensuse.ipxe
  21. :fed
  22. chain http://${server-ip}/boot/linux/fed.ipxe
  23. :ubu
  24. chain http://${server-ip}/boot/linux/ubuntu.ipxe
  25. :goback
  26. chain http://${server-ip}/boot/menu.ipxe