linux-arm.ipxe.j2 772 B

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