Merge pull request #1629 from netbootxyz/cachyos

Adds CachyOS
This commit is contained in:
Antony Messerli 2025-05-26 10:13:59 -05:00 committed by GitHub
commit 149e8c2bf2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 42 additions and 1 deletions

View file

@ -127,14 +127,15 @@ In addition to being able to host netboot.xyz locally, you can also create your
| BlackArch Linux | https://blackarch.org | Yes | Yes |
| Bluestar Linux | https://sourceforge.net/projects/bluestarlinux | No | Yes |
| Bodhi Linux | https://www.bodhilinux.com | No | Yes |
| CachyOS | https://cachyos.org | No | Yes |
| CentOS | https://centos.org | Yes | No |
| Fedora CoreOS | https://getfedora.org/en/coreos?stream=stable | Yes | No |
| Debian | https://debian.org | Yes | Yes|
| Devuan | https://devuan.org | Yes | No |
| Elementary OS | https://elementary.io | No | Yes |
| EndeavourOS | https://endeavouros.com | No | Yes |
| Fatdog64 | https://distro.ibiblio.org/fatdog/web/ | No | Yes |
| Fedora | https://fedoraproject.org | Yes | Yes |
| Fedora CoreOS | https://getfedora.org/en/coreos?stream=stable | Yes | No |
| Feren OS | https://ferenos.weebly.com/ | Yes | No |
| Flatcar Container Linux | https://www.flatcar.org | Yes | No |
| FreeBSD | https://freebsd.org | Yes, disk image | No |

View file

@ -0,0 +1,39 @@
#!ipxe
# CachyOS Operating System
# https://cachyos.org
goto ${menu} ||
:live_menu
set os CachyOS
menu ${os}
set ipparam BOOTIF=${netX/mac} ip=dhcp net.ifnames=0
item --gap ${os} Versions
{% for key, value in endpoints.items() | sort %}
{% if value.os == "cachyos" %}
item {{ value.version }} ${space} ${os} {{ value.version }}
{% endif %}
{% endfor %}
choose live_version || goto live_exit
goto ${live_version}
{% for key, value in endpoints.items() | sort %}
{% if value.os == "cachyos" %}
:{{ value.version }}
set url ${live_endpoint}{{ value.path }}
goto boot
{% endif %}
{% endfor %}
:boot
imgfree
kernel ${url}vmlinuz ${ipparam} archiso_http_srv=${url} cow_spacesize=10G copytoram=auto module_blacklist=nvidia,nvidia_modeset,nvidia_uvm,nvidia_drm,pcspkr nouveau.modeset=1 i915.modeset=1 radeon.modeset=1 nvme_load=yes initrd=initrd.magic console=tty1 {{ kernel_params }}
initrd ${url}initrd
initrd ${url}archiso_pxe_http /hooks/archiso_pxe_http mode=755
boot
:live_exit
clear menu
exit 0

View file

@ -8,6 +8,7 @@ item --gap Live Boot Distributions
item live-backbox ${space} BackBox
item live-bluestar ${space} Bluestar Linux
item live-bodhi ${space} Bodhi
item live-cachyos ${space} CachyOS
item live-debian ${space} Debian
item live-devuan ${space} Devuan
item live-elementary ${space} elementary OS