Remove anarchy linux

Closes: https://github.com/netbootxyz/netboot.xyz/issues/1320
This commit is contained in:
Antony Messerli 2023-11-12 09:02:41 -06:00
parent 7b5dbcb44c
commit 169d87c31b
5 changed files with 4 additions and 44 deletions

View file

@ -7,6 +7,10 @@ All notable changes to this project will be documented in this file.
## [2.0.74] - 2023-00-00
### Removed
- Anarchy Linux
## [2.0.73] - 2023-10-13
### Added

View file

@ -122,7 +122,6 @@ In addition to being able to host netboot.xyz locally, you can also create your
|------------|-----------------|------------------|---------------|
| AlmaLinux | https://almalinux.org/ | Yes | No |
| Alpine Linux | https://alpinelinux.org | Yes | No |
| Anarchy Linux | https://anarchyinstaller.org | Yes | No |
| Arch Linux | https://www.archlinux.org | Yes | No |
| Backbox | https://www.backbox.org | No | Yes |
| BlackArch Linux | https://blackarch.org | Yes | Yes |

View file

@ -418,14 +418,6 @@ endpoints:
- airootfs.sfs
os: bluestar
version: current
anarchy:
path: /asset-mirror/releases/download/1.3.4-54188370/
files:
- initrd
- vmlinuz
- airootfs.sfs
os: anarchy
version: current
zeninstall:
path: /asset-mirror/releases/download/2020.05.27-d3f9c78c/
files:

View file

@ -142,13 +142,6 @@ releases:
name: '3.18'
- code_name: edge
name: Edge (development)
anarchy:
enabled: true
menu: linux
name: Anarchy Linux
versions:
- code_name: current
name: current
archlinux:
base_dir: archlinux
enabled: true

View file

@ -1,28 +0,0 @@
#!ipxe
# Anarchy Linux Operating System
# https://anarchyinstaller.org/
goto ${menu}
:anarchy
set os {{ releases.anarchy.name }}
set ipparam BOOTIF=${netX/mac} ip=dhcp net.ifnames=0
menu ${os} Installers
{% for item in releases.anarchy.versions %}
item {{ item.code_name }} ${space} ${os} {{ item.name }}
{% endfor %}
choose anarchy_version || goto anarchy_exit
goto anarchy_boot
:anarchy_boot
imgfree
set url ${live_endpoint}{{ endpoints.anarchy.path }}
kernel ${url}vmlinuz archisobasedir=arch ${ipparam} archiso_http_srv=${url} {{ kernel_params }}
initrd ${url}initrd
boot
goto anarchy_exit
:anarchy_exit
clear menu
exit 0