1234567891011121314151617181920212223242526272829303132333435 |
- #!ipxe
- goto ${menu} ||
- :linux_menu
- menu Linux Installers - ARM ARCH **EXPERIMENTAL** Current Arch [ ${arch} ]
- item --gap Popular Linux Operating Systems:
- item centos ${space} CentOS
- item debian ${space} Debian
- item fedora ${space} Fedora
- item opensuse ${space} openSUSE
- item ubuntu ${space} Ubuntu
- item --gap All Others:
- #item alpinelinux ${space} Alpine Linux
- #item coreos ${space} Fedora CoreOS (Preview)
- #item flatcar ${space} Flatcar
- #item nixos ${space} NixOS
- item rhel ${space} Red Hat Enterprise Linux
- #item tinycore ${space} Tiny Core Linux
- 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
|