Merge pull request #58 from antonym/antergos

Adding Antergos OS
This commit is contained in:
Antony Messerli 2016-01-25 23:20:44 -06:00
commit cb45f89028
4 changed files with 31 additions and 0 deletions

View File

@ -35,6 +35,7 @@ Full documentation is at ReadTheDocs:
### What Operating Systems are available?
* [Antergos](https://antergos.com)
* [Arch Linux](https://www.archlinux.org)
* [CentOS](https://centos.org)
* [CoreOS](https://coreos.com/)

View File

@ -39,6 +39,7 @@ You'll need to make sure to have [DOWNLOAD_PROTO_HTTPS](https://github.com/ipxe/
#### What Operating Systems are currently available on netboot.xyz?
* [Antergos](https://antergos.com)
* [Arch Linux](https://www.archlinux.org)
* [CentOS](https://centos.org)
* [CoreOS](https://coreos.com/)

24
src/antergos.ipxe Normal file
View File

@ -0,0 +1,24 @@
#!ipxe
# Antergos Operating System
# https://antergos.com
goto ${menu}
:antergos
set os Antergos
menu ${os} Installers
item x86_64 ${space} ${os} Minimal 64bit [ISO]
item i686 ${space} ${os} Minimal 32bit [ISO]
choose version || goto antergos_exit
goto antergos_boot
:antergos_boot
kernel ${memdisk} iso raw
initrd http://repo.antergos.info/iso/release/antergos-minimal-2015.12.29-${version}.iso
boot
goto antergos_exit
:antergos_exit
clear menu
chain linux.ipxe

View File

@ -6,6 +6,7 @@ goto ${menu} ||
menu Linux Installers - Current Arch [ ${arch} ]
iseq ${arch} x86_64 && set arch_a amd64 || set arch_a ${arch}
item --gap Operating Systems:
item antergos ${space} Antergos
item archlinux ${space} Arch Linux
item centos ${space} CentOS
item coreos ${space} CoreOS
@ -37,6 +38,10 @@ chain menu.ipxe
iseq ${arch} x86_64 && set arch i386 || set arch x86_64
goto linux_menu
:antergos
chain antergos.ipxe
goto linux_menu
:fedora
chain fedora.ipxe
goto linux_menu