From f825d1005211e14c29c2ea631a9b48f42777667a Mon Sep 17 00:00:00 2001 From: humocs-man <251756307+humocs-man@users.noreply.github.com> Date: Fri, 1 May 2026 19:34:43 +0200 Subject: [PATCH] Revise multimedia stack installation script Updated multimedia stack installation to include i686 packages and removed group install. --- build/20-multimedia.sh | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/build/20-multimedia.sh b/build/20-multimedia.sh index 3a02445..cba12dd 100755 --- a/build/20-multimedia.sh +++ b/build/20-multimedia.sh @@ -7,20 +7,19 @@ set -eoux pipefail ############################################################################### echo "Installing Multimedia stack (Mesa Freeworld, Codecs & Groups)..." dnf5 install -y \ - mesa-va-drivers-freeworld.x86_64 \ - mesa-vdpau-drivers-freeworld.x86_64 \ - mesa-vulkan-drivers-freeworld.x86_64 \ - ffmpeg.x86_64 \ - ffmpeg-libs.x86_64 \ - libavcodec-freeworld.x86_64 \ - gstreamer1-libav.x86_64 \ - gstreamer1-plugins-bad-freeworld.x86_64 \ - gstreamer1-plugins-ugly.x86_64 \ + --enablerepo=terra \ + --disablerepo=rpmfusion-* \ + mesa-va-drivers mesa-va-drivers.i686 \ + mesa-vdpau-drivers mesa-vdpau-drivers.i686 \ + mesa-vulkan-drivers mesa-vulkan-drivers.i686 \ + mesa-dri-drivers mesa-dri-drivers.i686 \ + ffmpeg \ + gstreamer1-plugins-bad-free-extras \ + gstreamer1-plugins-ugly \ + gstreamer1-libav \ --allowerasing \ --skip-unavailable -# Die Gruppeninstallation bleibt separat, da sie eine eigene logische Einheit ist -dnf5 group install -y multimedia --with-optional --allowerasing # --- 2. Die sofortige Bereinigung (WICHTIG!) --- echo "Cleaning up this layer..."