mirror of
https://github.com/netbootxyz/netboot.xyz.git
synced 2025-09-08 07:11:01 +02:00
Merge pull request #64 from antonym/architect_linux
Adding support for Architect Linux
This commit is contained in:
commit
e09a675ad7
@ -37,6 +37,7 @@ Full documentation is at ReadTheDocs:
|
||||
|
||||
* [Antergos](https://antergos.com)
|
||||
* [Arch Linux](https://www.archlinux.org)
|
||||
* [Architect Linux](http://sourceforge.net/projects/architect-linux)
|
||||
* [CentOS](https://centos.org)
|
||||
* [CoreOS](https://coreos.com/)
|
||||
* [Debian](https://debian.org)
|
||||
|
@ -41,6 +41,7 @@ You'll need to make sure to have [DOWNLOAD_PROTO_HTTPS](https://github.com/ipxe/
|
||||
|
||||
* [Antergos](https://antergos.com)
|
||||
* [Arch Linux](https://www.archlinux.org)
|
||||
* [Architect Linux](http://sourceforge.net/projects/architect-linux)
|
||||
* [CentOS](https://centos.org)
|
||||
* [CoreOS](https://coreos.com/)
|
||||
* [Debian](https://debian.org)
|
||||
|
23
src/architect.ipxe
Normal file
23
src/architect.ipxe
Normal file
@ -0,0 +1,23 @@
|
||||
#!ipxe
|
||||
|
||||
# Architect Liunx Operating System
|
||||
# http://sourceforge.net/projects/architect-linux/
|
||||
|
||||
goto ${menu}
|
||||
|
||||
:architect
|
||||
set os Architect Linux
|
||||
menu ${os} Installers
|
||||
item x86_64 ${space} ${os} Latest [ISO]
|
||||
choose version || goto architect_exit
|
||||
goto architect_boot
|
||||
|
||||
:architect_boot
|
||||
kernel ${memdisk} iso raw
|
||||
initrd http://sourceforge.net/projects/architect-linux/files/latest/download
|
||||
boot
|
||||
goto architect_exit
|
||||
|
||||
:architect_exit
|
||||
clear menu
|
||||
chain linux.ipxe
|
@ -16,6 +16,7 @@ item opensuse ${space} openSUSE
|
||||
item ubuntu ${space} Ubuntu
|
||||
item --gap All Others
|
||||
item antergos ${space} Antergos
|
||||
item architect ${space} Architect Linux
|
||||
item coreos ${space} CoreOS
|
||||
item rancheros ${space} RancherOS
|
||||
item scientific ${space} Scientific
|
||||
@ -43,6 +44,10 @@ goto linux_menu
|
||||
chain antergos.ipxe
|
||||
goto linux_menu
|
||||
|
||||
:architect
|
||||
chain architect.ipxe
|
||||
goto linux_menu
|
||||
|
||||
:fedora
|
||||
chain fedora.ipxe
|
||||
goto linux_menu
|
||||
|
Loading…
x
Reference in New Issue
Block a user