linux-arm.ipxe.j2 947 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. #!ipxe
  2. goto ${menu} ||
  3. :linux_menu
  4. menu Linux Installers - Current Arch [ ${arch} ]
  5. item --gap Popular Linux Operating Systems:
  6. item almalinux ${space} AlmaLinux
  7. item alpinelinux ${space} Alpine Linux
  8. item centos ${space} CentOS
  9. item debian ${space} Debian
  10. item fedora ${space} Fedora
  11. item coreos ${space} Fedora CoreOS
  12. item gentoo ${space} Gentoo
  13. item kali ${space} Kali
  14. item nixos ${space} NixOS
  15. item opensuse ${space} openSUSE
  16. item oracle ${space} Oracle Linux
  17. item rhel ${space} Red Hat Enterprise Linux
  18. item rockylinux ${space} Rocky Linux
  19. item talos ${space} Talos
  20. item ubuntu ${space} Ubuntu
  21. item photon ${space} VMware Photon
  22. choose menu || goto linux_exit
  23. echo ${cls}
  24. goto ${menu} ||
  25. iseq ${sigs_enabled} true && goto verify_sigs || goto change_menu
  26. :verify_sigs
  27. imgverify ${menu}.ipxe ${sigs}${menu}.ipxe.sig || goto error
  28. goto change_menu
  29. :change_menu
  30. chain ${menu}.ipxe || goto error
  31. goto linux_menu
  32. :linux_exit
  33. clear menu
  34. exit 0