linux-arm.ipxe.j2 948 B

12345678910111213141516171819202122232425262728293031323334353637
  1. #!ipxe
  2. goto ${menu} ||
  3. :linux_menu
  4. menu Linux Installers - ARM ARCH **EXPERIMENTAL** 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 fedora ${space} Fedora
  11. item rhel ${space} Red Hat Enterprise Linux
  12. item rockylinux ${space} Rocky Linux
  13. #item --gap All Others:
  14. #item coreos ${space} Fedora CoreOS (Preview)
  15. #item flatcar ${space} Flatcar
  16. #item nixos ${space} NixOS
  17. item rhel ${space} Red Hat Enterprise Linux
  18. #item tinycore ${space} Tiny Core Linux
  19. #item ubuntu ${space} Ubuntu
  20. choose menu || goto linux_exit
  21. echo ${cls}
  22. goto ${menu} ||
  23. iseq ${sigs_enabled} true && goto verify_sigs || goto change_menu
  24. :verify_sigs
  25. imgverify ${menu}.ipxe ${sigs}${menu}.ipxe.sig || goto error
  26. goto change_menu
  27. :change_menu
  28. chain ${menu}.ipxe || goto error
  29. goto linux_menu
  30. :linux_exit
  31. clear menu
  32. exit 0