123456789101112131415161718192021222324252627282930 |
- #!ipxe
- goto ${menu} ||
- :linux_menu
- menu Linux Installers - Current Arch [ ${arch} ]
- iseq ${arch} x86_64 && set arch_a amd64 || set arch_a ${arch}
- item --gap Popular Linux Operating Systems:
- {% for key, value in releases.items() | sort %}
- {% if value.enabled is defined and value.menu == "linux" and value.enabled | bool %}
- item {{ key }} ${space} {{ value.name }}
- {% endif %}
- {% endfor %}
- item --gap All Others:
- choose menu || goto linux_exit
- echo ${cls}
- goto ${menu} ||
- iseq ${sigs_enabled} true && goto verify_sigs || goto change_menu
- :verify_sigs
- imgverify ${menu}.ipxe ${sigs}${menu}.ipxe.sig || goto error
- goto change_menu
- :change_menu
- chain ${menu}.ipxe || goto error
- goto linux_menu
- :linux_exit
- clear menu
- exit 0
|