mirror of
https://github.com/netbootxyz/netboot.xyz.git
synced 2025-09-08 23:31:06 +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)
|
* [Antergos](https://antergos.com)
|
||||||
* [Arch Linux](https://www.archlinux.org)
|
* [Arch Linux](https://www.archlinux.org)
|
||||||
|
* [Architect Linux](http://sourceforge.net/projects/architect-linux)
|
||||||
* [CentOS](https://centos.org)
|
* [CentOS](https://centos.org)
|
||||||
* [CoreOS](https://coreos.com/)
|
* [CoreOS](https://coreos.com/)
|
||||||
* [Debian](https://debian.org)
|
* [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)
|
* [Antergos](https://antergos.com)
|
||||||
* [Arch Linux](https://www.archlinux.org)
|
* [Arch Linux](https://www.archlinux.org)
|
||||||
|
* [Architect Linux](http://sourceforge.net/projects/architect-linux)
|
||||||
* [CentOS](https://centos.org)
|
* [CentOS](https://centos.org)
|
||||||
* [CoreOS](https://coreos.com/)
|
* [CoreOS](https://coreos.com/)
|
||||||
* [Debian](https://debian.org)
|
* [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 ubuntu ${space} Ubuntu
|
||||||
item --gap All Others
|
item --gap All Others
|
||||||
item antergos ${space} Antergos
|
item antergos ${space} Antergos
|
||||||
|
item architect ${space} Architect Linux
|
||||||
item coreos ${space} CoreOS
|
item coreos ${space} CoreOS
|
||||||
item rancheros ${space} RancherOS
|
item rancheros ${space} RancherOS
|
||||||
item scientific ${space} Scientific
|
item scientific ${space} Scientific
|
||||||
@ -43,6 +44,10 @@ goto linux_menu
|
|||||||
chain antergos.ipxe
|
chain antergos.ipxe
|
||||||
goto linux_menu
|
goto linux_menu
|
||||||
|
|
||||||
|
:architect
|
||||||
|
chain architect.ipxe
|
||||||
|
goto linux_menu
|
||||||
|
|
||||||
:fedora
|
:fedora
|
||||||
chain fedora.ipxe
|
chain fedora.ipxe
|
||||||
goto linux_menu
|
goto linux_menu
|
||||||
|
Loading…
x
Reference in New Issue
Block a user