Ver Fonte

Merge pull request #64 from antonym/architect_linux

Adding support for Architect Linux
Antony Messerli há 9 anos atrás
pai
commit
e09a675ad7
4 ficheiros alterados com 30 adições e 0 exclusões
  1. 1 0
      README.md
  2. 1 0
      docs/index.md
  3. 23 0
      src/architect.ipxe
  4. 5 0
      src/linux.ipxe

+ 1 - 0
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)

+ 1 - 0
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)

+ 23 - 0
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

+ 5 - 0
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