mirror of
https://github.com/optim-enterprises-bv/secureblue.git
synced 2025-11-01 10:57:49 +00:00
* feat: migrate to f41 * exclude yafti until it's available for f41 * build fixes * use correct wayblue f41 branch tag * fix: add yafti back * feat: include google-noto-fonts-all for universal font coverage * fix: typo * chore: use negativo for all nvidia stuff, then remove the repo * add debug line * fix nvidia builds * fix file path * prep for 41 * remove redundant systemctl commands * remove dkmshelper * include minimal server components for nvidia * fix typo * prep for f41 * fix nvidia server modules * various fixes * more fixes * fix (again) * move gstreamer packages * more gstreamer refactoring * include additional removal
25 lines
708 B
Bash
25 lines
708 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Tell build process to exit if there are any errors.
|
|
set -oue pipefail
|
|
|
|
curl -Lo /etc/yum.repos.d/negativo17-fedora-multimedia.repo https://negativo17.org/repos/fedora-multimedia.repo
|
|
sed -i '0,/enabled=1/{s/enabled=1/enabled=1\npriority=90/}' /etc/yum.repos.d/negativo17-fedora-multimedia.repo
|
|
|
|
rpm-ostree override replace \
|
|
--experimental \
|
|
--from repo='fedora-multimedia' \
|
|
libheif \
|
|
libva \
|
|
libva-intel-media-driver \
|
|
mesa-dri-drivers \
|
|
mesa-filesystem \
|
|
mesa-libEGL \
|
|
mesa-libGL \
|
|
mesa-libgbm \
|
|
mesa-libglapi \
|
|
mesa-libxatracker \
|
|
mesa-va-drivers \
|
|
mesa-vulkan-drivers \
|
|
gstreamer1-plugin-libav \
|
|
gstreamer1-plugin-vaapi |