diff --git a/README.md b/README.md index cea52c62..d09c412d 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/docs/index.md b/docs/index.md index a83ba5ad..f6325320 100644 --- a/docs/index.md +++ b/docs/index.md @@ -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) diff --git a/src/architect.ipxe b/src/architect.ipxe new file mode 100644 index 00000000..a209d075 --- /dev/null +++ b/src/architect.ipxe @@ -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 diff --git a/src/linux.ipxe b/src/linux.ipxe index 38c86e96..0aabd78f 100644 --- a/src/linux.ipxe +++ b/src/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