1
0

live.ipxe.j2 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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-voyager ${space} Voyager
  40. item live-zorin ${space} Zorin OS
  41. choose menu || goto live_exit
  42. echo ${cls}
  43. goto ${menu} ||
  44. iseq ${sigs_enabled} true && goto verify_sigs || goto change_menu
  45. :verify_sigs
  46. imgverify ${menu}.ipxe ${sigs}${menu}.ipxe.sig || goto error
  47. goto change_menu
  48. :change_menu
  49. chain ${menu}.ipxe || goto error
  50. goto live_menu
  51. :live_exit
  52. clear menu
  53. exit 0