live.ipxe.j2 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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-kali ${space} Kali
  18. item live-kodachi ${space} Kodachi
  19. item live-neon ${space} KDE Neon
  20. item live-lite ${space} Linux Lite
  21. item live-lxle ${space} LXLE
  22. item live-manjaro ${space} Manjaro
  23. item live-mint ${space} Mint
  24. item live-nitrux ${space} Nitrux
  25. item live-parrot ${space} Parrot OS
  26. item live-peppermint ${space} Peppermint
  27. item live-popos ${space} Pop OS
  28. item live-q4os ${space} Q4OS
  29. item live-raizo ${space} Live Raizo
  30. item live-regolith ${space} Regolith
  31. item live-septor ${space} Septor
  32. item live-sparky ${space} SparkyLinux
  33. item live-tails ${space} Tails
  34. item tinycore ${space} Tiny Core Linux
  35. item live-ubuntu ${space} Ubuntu
  36. item live-velt ${space} Velt
  37. item live-voyager ${space} Voyager
  38. item live-zorin ${space} Zorin OS
  39. choose menu || goto live_exit
  40. echo ${cls}
  41. goto ${menu} ||
  42. iseq ${sigs_enabled} true && goto verify_sigs || goto change_menu
  43. :verify_sigs
  44. imgverify ${menu}.ipxe ${sigs}${menu}.ipxe.sig || goto error
  45. goto change_menu
  46. :change_menu
  47. chain ${menu}.ipxe || goto error
  48. goto live_menu
  49. :live_exit
  50. clear menu
  51. exit 0