From 24c07efd9f963a161b1482be879a8df57d32ad1b Mon Sep 17 00:00:00 2001 From: humocs-man <251756307+humocs-man@users.noreply.github.com> Date: Fri, 1 May 2026 20:29:26 +0200 Subject: [PATCH] Fix multimedia stack installation for architecture Updated multimedia stack installation to include architecture-specific packages. --- build/20-multimedia.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/20-multimedia.sh b/build/20-multimedia.sh index cc0ef8e..4e71bff 100755 --- a/build/20-multimedia.sh +++ b/build/20-multimedia.sh @@ -7,9 +7,9 @@ set -eoux pipefail ############################################################################### echo "Installing Multimedia stack (Mesa Freeworld, Codecs & Groups)..." dnf5 install -y \ - mesa-va-drivers-freeworld \ + mesa-va-drivers-freeworld.x86_64 \ mesa-va-drivers-freeworld.i686 \ - mesa-vdpau-drivers-freeworld \ + mesa-vdpau-drivers-freeworld.x86_64 \ mesa-vdpau-drivers-freeworld.i686 \ gstreamer1-plugins-bad-freeworld \ gstreamer1-plugins-ugly \