Revise multimedia stack installation in script

Updated multimedia installation to include additional drivers and libraries.
This commit is contained in:
humocs-man
2026-05-03 20:03:21 +02:00
committed by GitHub
parent 9a25e0ec9e
commit fe7696e8cc
+20 -14
View File
@@ -7,22 +7,28 @@ set -eoux pipefail
############################################################################### ###############################################################################
echo "Installing Multimedia stack (Mesa Freeworld, Codecs & Groups)..." echo "Installing Multimedia stack (Mesa Freeworld, Codecs & Groups)..."
dnf5 install -y \ dnf5 install -y \
mesa-va-drivers-freeworld.x86_64 \ dnf5 install -y \
mesa-va-drivers-freeworld.i686 \ --enablerepo=terra \
mesa-vdpau-drivers-freeworld.x86_64 \
mesa-vdpau-drivers-freeworld.i686 \
gstreamer1-plugins-bad-freeworld \
gstreamer1-plugins-ugly \
gstreamer1-libav \
ffmpeg \
--allowerasing \ --allowerasing \
--skip-unavailable --skip-unavailable \
mesa-va-drivers \
dnf5 install -y @multimedia mesa-vdpau-drivers \
mesa-vulkan-drivers \
mesa-dri-drivers \
ffmpeg \
libavcodec-freeworld \
gstreamer1-libav \
gstreamer1-plugins-ugly \
gstreamer1-plugins-bad-free-extras \
rocm-clinfo \
rocm-hip \
rocm-opencl \
rocblas \
hipblas \
rocm-runtime
# --- 2. Die sofortige Bereinigung (WICHTIG!) --- # --- 2. Die sofortige Bereinigung (WICHTIG!) ---
echo "Cleaning up this layer..." echo "Cleaning up this layer..."
dnf5 clean all || true dnf5 clean all || true
dnf5 autoremove -y || true
rm -rf /tmp/* /var/tmp/* || true rm -rf /tmp/* /var/tmp/* || true