1
0

linux-arm.ipxe.j2 737 B

1234567891011121314151617181920212223242526272829303132
  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. item ubuntu ${space} Ubuntu
  15. choose menu || goto linux_exit
  16. echo ${cls}
  17. goto ${menu} ||
  18. iseq ${sigs_enabled} true && goto verify_sigs || goto change_menu
  19. :verify_sigs
  20. imgverify ${menu}.ipxe ${sigs}${menu}.ipxe.sig || goto error
  21. goto change_menu
  22. :change_menu
  23. chain ${menu}.ipxe || goto error
  24. goto linux_menu
  25. :linux_exit
  26. clear menu
  27. exit 0