12345678910111213141516171819202122232425262728 |
- #!ipxe
- goto ${menu} ||
- :linux_menu
- menu Linux Installers - Current Arch [ ${arch} ]
- item --gap Popular Linux Operating Systems:
- item alpinelinux ${space} Alpine Linux
- item debian ${space} Debian
- item gentoo ${space} Gentoo
- item kali ${space} Kali Linux
- item opensuse ${space} OpenSUSE
- 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
|