From 5c5bf7d9c36117b9fd70d91470b675f035baf4cc Mon Sep 17 00:00:00 2001 From: humocs-man <251756307+humocs-man@users.noreply.github.com> Date: Sun, 3 May 2026 21:31:45 +0200 Subject: [PATCH] Enhance multimedia stack installation with ROCm Updated multimedia installation script to include freeworld drivers and added ROCm installation. --- build/20-multimedia.sh | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/build/20-multimedia.sh b/build/20-multimedia.sh index 331408a..52a871c 100755 --- a/build/20-multimedia.sh +++ b/build/20-multimedia.sh @@ -7,17 +7,20 @@ set -eoux pipefail ############################################################################### echo "Installing Multimedia stack (Mesa Freeworld, Codecs & Groups)..." dnf5 install -y \ - --enablerepo=terra \ --allowerasing \ --skip-unavailable \ - mesa-va-drivers \ - mesa-vdpau-drivers \ - mesa-vulkan-drivers \ - mesa-dri-drivers \ + mesa-va-drivers-freeworld \ + mesa-vdpau-drivers-freeworld \ + mesa-vulkan-drivers-freeworld \ + mesa-dri-drivers-freeworld \ ffmpeg \ gstreamer1-libav \ gstreamer1-plugins-ugly \ - gstreamer1-plugins-bad-free-extras \ + gstreamer1-plugins-bad-free-extras + +dnf5 install -y @multimedia +echo "Installing rocm" +dnf5 install -y \ rocm-clinfo \ rocm-hip \ rocm-opencl \