live.ipxe.j2 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. #!ipxe
  2. goto ${menu} ||
  3. :live_menu
  4. menu Live Boot Distributions - Current Arch [ ${arch} ]
  5. iseq ${arch} x86_64 && set arch_a amd64 || set arch_a ${arch}
  6. item --gap Live Boot Distributions
  7. item live-backbox ${space} BackBox
  8. item live-bluestar ${space} Bluestar Linux
  9. item live-bodhi ${space} Bodhi
  10. item live-debian ${space} Debian
  11. item live-deepin ${space} Deepin
  12. item live-devuan ${space} Devuan
  13. item live-elementary ${space} elementary OS
  14. item live-fatdog ${space} Fatdog64
  15. item live-fedora ${space} Fedora
  16. item live-feren ${space} Feren OS
  17. item live-k3os ${space} K3OS
  18. item live-kali ${space} Kali
  19. item live-kodachi ${space} Kodachi
  20. item live-neon ${space} KDE Neon
  21. item live-lite ${space} Linux Lite
  22. item live-lxle ${space} LXLE
  23. item live-manjaro ${space} Manjaro
  24. item live-mint ${space} Mint
  25. item live-nitrux ${space} Nitrux
  26. item live-parrot ${space} Parrot OS
  27. item live-peppermint ${space} Peppermint
  28. item live-popos ${space} Pop OS
  29. item live-q4os ${space} Q4OS
  30. item live-raizo ${space} Live Raizo
  31. item live-regolith ${space} Regolith
  32. item live-septor ${space} Septor
  33. item live-sparky ${space} SparkyLinux
  34. item tinycore ${space} Tiny Core Linux
  35. item live-ubuntu ${space} Ubuntu
  36. item live-voyager ${space} Voyager
  37. item live-zorin ${space} Zorin OS
  38. choose menu || goto live_exit
  39. echo ${cls}
  40. goto ${menu} ||
  41. iseq ${sigs_enabled} true && goto verify_sigs || goto change_menu
  42. :verify_sigs
  43. imgverify ${menu}.ipxe ${sigs}${menu}.ipxe.sig || goto error
  44. goto change_menu
  45. :change_menu
  46. chain ${menu}.ipxe || goto error
  47. goto live_menu
  48. :live_exit
  49. clear menu
  50. exit 0