rebrand!: Antergos NeXT -> Euri Linux

This commit is contained in:
2026-08-21 21:34:51 +02:00
parent 24affb4a5a
commit 11706db546
128 changed files with 452 additions and 449 deletions
+6 -6
View File
@@ -1,16 +1,16 @@
# Antergos NeXT ISO build container
# Euri Linux ISO build container
#
# Build an Antergos NeXT ISO inside an Artix Linux container. This is the
# Build an Euri Linux ISO inside an Artix Linux container. This is the
# same path GitHub Actions uses, so anyone can produce a release ISO without
# running an Artix/Arch system (works on Gentoo, Fedora, anything with podman).
#
# Usage:
# podman build -t antergos-build .
# podman build -t euri-build .
# podman run --rm --privileged \
# -v /var/lib/artools-buildiso:/var/lib/artools/buildiso \
# -v "$(pwd)/iso-output:/workspace/iso-output" \
# -e WORKSPACE_DIR=/workspace \
# antergos-build
# euri-build
#
# --privileged is required: artools' chroot (via basestrap) mounts devtmpfs,
# proc and sysfs into the target, which rootless containers cannot do.
@@ -44,7 +44,7 @@ RUN pacman -Syu --noconfirm --needed --overwrite='*' \
WORKDIR /workspace
COPY . .
# Point artools at the Antergos package repository. CI copies the profile's
# Point artools at the Euri package repository. CI copies the profile's
# pacman.conf into both the user config dir (first match) and artools' defaults.
RUN mkdir -p /root/.config/artools/pacman.conf.d \
&& cp pacman.conf.d/iso-x86_64.conf /root/.config/artools/pacman.conf.d/iso-x86_64.conf \
@@ -53,4 +53,4 @@ RUN mkdir -p /root/.config/artools/pacman.conf.d \
# The modified buildiso lives in this repo and must be used instead of
# /usr/bin/buildiso (which lacks --overwrite='*').
ENTRYPOINT ["/workspace/buildiso"]
CMD ["-p", "antergos"]
CMD ["-p", "euri"]