1
0

live.ipxe.j2 1.6 KB

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