live.ipxe.j2 1.6 KB

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