linux-arm.ipxe.j2 709 B

12345678910111213141516171819202122232425262728293031
  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 gentoo ${space} Gentoo
  11. item fedora ${space} Fedora
  12. item rhel ${space} Red Hat Enterprise Linux
  13. item rockylinux ${space} Rocky Linux
  14. choose menu || goto linux_exit
  15. echo ${cls}
  16. goto ${menu} ||
  17. iseq ${sigs_enabled} true && goto verify_sigs || goto change_menu
  18. :verify_sigs
  19. imgverify ${menu}.ipxe ${sigs}${menu}.ipxe.sig || goto error
  20. goto change_menu
  21. :change_menu
  22. chain ${menu}.ipxe || goto error
  23. goto linux_menu
  24. :linux_exit
  25. clear menu
  26. exit 0