live.ipxe.j2 1.5 KB

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