- notify-bootc-user.sh: D-Bus-Umgebung korrekt fuer Systemd-Service, jq-basierter Staging-Check (.status.staged != null), Guard Clauses, -Variable entfernt - Containerfile: COPY --chmod=755 fuer Skript-Permissions - build/20-multimedia.sh: Redundantes dnf5 clean all entfernt - build/30-virt.sh: dnf5 autoremove und Cleanup entfernt - build/40-remove-packages.sh: || true entfernt (Fehler sichtbar machen) - build/50-prepare-flatpak-for-bazaar.sh: curl -f --retry 3 hinzugefuegt - build.yml: chunkah Rechunk-Step fuer content-based Layers (Delta-Updates), Cache-Key erweitert (scripts/**), continue-on-error entfernt - build-installer-iso.yml: concurrency-Block hinzugefuegt
35 lines
907 B
Bash
Executable File
35 lines
907 B
Bash
Executable File
#!/usr/bin/bash
|
|
set -eoux pipefail
|
|
|
|
###############################################################################
|
|
# Transaction 1: Multimedia Stack (Mesa + Codecs + Group)
|
|
# Zusammengefasst, um Abhängigkeiten in einem Schritt zu lösen.
|
|
###############################################################################
|
|
echo "Installing Multimedia stack (Mesa Freeworld, Codecs & Groups)..."
|
|
dnf5 install -y \
|
|
--allowerasing \
|
|
--skip-unavailable \
|
|
mesa-va-drivers-freeworld.x86_64 \
|
|
mesa-vdpau-drivers-freeworld.x86_64 \
|
|
mesa-vulkan-drivers-freeworld.x86_64 \
|
|
mesa-dri-drivers-freeworld.x86_64 \
|
|
ffmpeg.x86_64 \
|
|
gstreamer1-libav \
|
|
gstreamer1-plugins-ugly \
|
|
gstreamer1-plugins-bad-free-extras \
|
|
intel-media-driver
|
|
|
|
dnf5 install -y @multimedia
|
|
|
|
#echo "Installing rocm"
|
|
#dnf5 install -y \
|
|
# rocm-clinfo \
|
|
# rocm-hip \
|
|
# rocm-opencl \
|
|
# rocblas \
|
|
# hipblas \
|
|
# rocm-runtime
|
|
|
|
|
|
|