-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #53 from ublue-os/add-nvidia
feat: add nvidia kmod builds and ublue-os-nvidia-addons
- Loading branch information
Showing
8 changed files
with
224 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
#!/bin/sh | ||
|
||
set -oeux pipefail | ||
|
||
NVIDIA_MAJOR_VERSION=${1} | ||
|
||
RELEASE="$(rpm -E '%fedora.%_arch')" | ||
echo NVIDIA_MAJOR_VERSION=${NVIDIA_MAJOR_VERSION} | ||
|
||
cd /tmp | ||
|
||
### BUILD nvidia | ||
# nvidia 520.xxx and newer currently don't have a -$VERSIONxx suffix in their | ||
# package names | ||
if [[ "${NVIDIA_MAJOR_VERSION}" -ge 520 ]]; then | ||
NVIDIA_PACKAGE_NAME="nvidia" | ||
else | ||
NVIDIA_PACKAGE_NAME="nvidia-${NVIDIA_MAJOR_VERSION}xx" | ||
fi | ||
|
||
dnf install -y \ | ||
akmod-${NVIDIA_PACKAGE_NAME}*:${NVIDIA_MAJOR_VERSION}.*.fc${RELEASE} \ | ||
xorg-x11-drv-${NVIDIA_PACKAGE_NAME}-{,cuda,devel,kmodsrc,power}*:${NVIDIA_MAJOR_VERSION}.*.fc${RELEASE} | ||
|
||
# Either successfully build and install the kernel modules, or fail early with debug output | ||
KERNEL_VERSION="$(rpm -q kernel --queryformat '%{VERSION}-%{RELEASE}.%{ARCH}')" | ||
NVIDIA_AKMOD_VERSION="$(basename "$(rpm -q "akmod-${NVIDIA_PACKAGE_NAME}" --queryformat '%{VERSION}-%{RELEASE}')" ".fc${RELEASE%%.*}")" | ||
NVIDIA_LIB_VERSION="$(basename "$(rpm -q "xorg-x11-drv-${NVIDIA_PACKAGE_NAME}" --queryformat '%{VERSION}-%{RELEASE}')" ".fc${RELEASE%%.*}")" | ||
NVIDIA_FULL_VERSION="$(rpm -q "xorg-x11-drv-${NVIDIA_PACKAGE_NAME}" --queryformat '%{EPOCH}:%{VERSION}-%{RELEASE}.%{ARCH}')" | ||
|
||
|
||
akmods --force --kernels "${KERNEL_VERSION}" --kmod "${NVIDIA_PACKAGE_NAME}" | ||
|
||
modinfo /usr/lib/modules/${KERNEL_VERSION}/extra/${NVIDIA_PACKAGE_NAME}/nvidia{,-drm,-modeset,-peermem,-uvm}.ko.xz > /dev/null || \ | ||
(cat /var/cache/akmods/${NVIDIA_PACKAGE_NAME}/${NVIDIA_AKMOD_VERSION}-for-${KERNEL_VERSION}.failed.log && exit 1) | ||
|
||
cat <<EOF > /var/cache/rpms/kmods/nvidia-vars.${NVIDIA_MAJOR_VERSION} | ||
KERNEL_VERSION=${KERNEL_VERSION} | ||
RELEASE=${RELEASE} | ||
NVIDIA_PACKAGE_NAME=${NVIDIA_PACKAGE_NAME} | ||
NVIDIA_MAJOR_VERSION=${NVIDIA_MAJOR_VERSION} | ||
NVIDIA_FULL_VERSION=${NVIDIA_FULL_VERSION} | ||
NVIDIA_AKMOD_VERSION=${NVIDIA_AKMOD_VERSION} | ||
NVIDIA_LIB_VERSION=${NVIDIA_LIB_VERSION} | ||
EOF | ||
|
||
# cleanup for other nvidia builds | ||
dnf remove -y \ | ||
akmod-${NVIDIA_PACKAGE_NAME}*:${NVIDIA_MAJOR_VERSION}.*.fc${RELEASE} \ | ||
xorg-x11-drv-${NVIDIA_PACKAGE_NAME}-{,cuda,devel,kmodsrc,power}*:${NVIDIA_MAJOR_VERSION}.*.fc${RELEASE} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/bin/sh | ||
|
||
set -oeux pipefail | ||
|
||
|
||
sed -i "s@gpgcheck=0@gpgcheck=1@" /tmp/ublue-os-nvidia-addons/rpmbuild/SOURCES/nvidia-container-runtime.repo | ||
|
||
rpmbuild -ba \ | ||
--define '_topdir /tmp/ublue-os-nvidia-addons/rpmbuild' \ | ||
--define '%_tmppath %{_topdir}/tmp' \ | ||
/tmp/ublue-os-nvidia-addons/ublue-os-nvidia-addons.spec |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
disable-require = false | ||
#swarm-resource = "DOCKER_RESOURCE_GPU" | ||
#accept-nvidia-visible-devices-envvar-when-unprivileged = true | ||
#accept-nvidia-visible-devices-as-volume-mounts = false | ||
|
||
[nvidia-container-cli] | ||
#root = "/run/nvidia/driver" | ||
#path = "/usr/bin/nvidia-container-cli" | ||
environment = [] | ||
#debug = "/var/log/nvidia-container-toolkit.log" | ||
#ldcache = "/etc/ld.so.cache" | ||
load-kmods = true | ||
#no-cgroups = false | ||
no-cgroups = true | ||
#user = "root:video" | ||
ldconfig = "@/sbin/ldconfig" | ||
|
||
[nvidia-container-runtime] | ||
#debug = "/var/log/nvidia-container-runtime.log" | ||
debug = "~/.local/nvidia-container-runtime.log" | ||
log-level = "info" | ||
|
||
# Specify the runtimes to consider. This list is processed in order and the PATH | ||
# searched for matching executables unless the entry is an absolute path. | ||
runtimes = [ | ||
"docker-runc", | ||
"runc", | ||
] | ||
|
||
mode = "auto" | ||
|
||
[nvidia-container-runtime.modes.csv] | ||
|
||
mount-spec-path = "/etc/nvidia-container-runtime/host-files-for-container.d" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# This file is a part of Fedora configuration for Sway and will be sourced | ||
# from /usr/bin/start-sway script for all users of the system. | ||
# User-specific variables should be placed in $XDG_CONFIG_HOME/sway/environment | ||
# | ||
# vim: set ft=sh: | ||
|
||
## Pass extra arguments to the /usr/bin/sway executable | ||
|
||
#SWAY_EXTRA_ARGS="$SWAY_EXTRA_ARGS --unsupported-gpu" | ||
SWAY_EXTRA_ARGS="$SWAY_EXTRA_ARGS --unsupported-gpu -D noscanout" | ||
#SWAY_EXTRA_ARGS="$SWAY_EXTRA_ARGS --debug" | ||
|
||
## Set environment variables | ||
|
||
# Useful variables for wlroots: | ||
# https://gitlab.freedesktop.org/wlroots/wlroots/-/blob/master/docs/env_vars.md | ||
# | ||
#WLR_NO_HARDWARE_CURSORS=1 | ||
WLR_NO_HARDWARE_CURSORS=1 | ||
# Setting renderer to Vulkan may fix flickering but needs the following extensions: | ||
# - VK_EXT_image_drm_format_modifier | ||
# - VK_EXT_physical_device_drm | ||
# | ||
# Source: https://gitlab.freedesktop.org/wlroots/wlroots/-/commit/8e346922508aa3eaccd6e12f2917f6574f349843 | ||
#WLR_RENDERER=vulkan | ||
|
||
# Application compatibility |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
Name: ublue-os-nvidia-addons | ||
Version: 0.8 | ||
Release: 1%{?dist} | ||
Summary: Additional files for nvidia driver support | ||
|
||
License: MIT | ||
URL: https://github.com/ublue-os/nvidia | ||
|
||
BuildArch: noarch | ||
Supplements: mokutil policycoreutils | ||
|
||
Source0: nvidia-container-runtime.repo | ||
Source1: eyecantcu-supergfxctl.repo | ||
Source2: config-rootless.toml | ||
Source3: nvidia-container.pp | ||
Source4: environment | ||
|
||
%description | ||
Adds various runtime files for nvidia support. | ||
|
||
%prep | ||
%setup -q -c -T | ||
|
||
|
||
%build | ||
install -Dm0644 %{SOURCE0} %{buildroot}%{_datadir}/ublue-os/%{_sysconfdir}/yum.repos.d/nvidia-container-runtime.repo | ||
install -Dm0644 %{SOURCE1} %{buildroot}%{_datadir}/ublue-os/%{_sysconfdir}/yum.repos.d/eyecantcu-supergfxctl.repo | ||
install -Dm0644 %{SOURCE2} %{buildroot}%{_datadir}/ublue-os/%{_sysconfdir}/nvidia-container-runtime/config-rootless.toml | ||
install -Dm0644 %{SOURCE3} %{buildroot}%{_datadir}/ublue-os/%{_datadir}/selinux/packages/nvidia-container.pp | ||
install -Dm0644 %{SOURCE4} %{buildroot}%{_datadir}/ublue-os/%{_sysconfdir}/sway/environment | ||
|
||
install -Dm0644 %{buildroot}%{_datadir}/ublue-os/%{_sysconfdir}/yum.repos.d/nvidia-container-runtime.repo %{buildroot}%{_sysconfdir}/yum.repos.d/nvidia-container-runtime.repo | ||
install -Dm0644 %{buildroot}%{_datadir}/ublue-os/%{_sysconfdir}/yum.repos.d/eyecantcu-supergfxctl.repo %{buildroot}%{_sysconfdir}/yum.repos.d/eyecantcu-supergfxctl.repo | ||
install -Dm0644 %{buildroot}%{_datadir}/ublue-os/%{_sysconfdir}/nvidia-container-runtime/config-rootless.toml %{buildroot}%{_sysconfdir}/nvidia-container-runtime/config-rootless.toml | ||
install -Dm0644 %{buildroot}%{_datadir}/ublue-os/%{_datadir}/selinux/packages/nvidia-container.pp %{buildroot}%{_datadir}/selinux/packages/nvidia-container.pp | ||
|
||
%files | ||
%attr(0644,root,root) %{_datadir}/ublue-os/%{_sysconfdir}/yum.repos.d/nvidia-container-runtime.repo | ||
%attr(0644,root,root) %{_datadir}/ublue-os/%{_sysconfdir}/yum.repos.d/eyecantcu-supergfxctl.repo | ||
%attr(0644,root,root) %{_datadir}/ublue-os/%{_sysconfdir}/nvidia-container-runtime/config-rootless.toml | ||
%attr(0644,root,root) %{_datadir}/ublue-os/%{_datadir}/selinux/packages/nvidia-container.pp | ||
%attr(0644,root,root) %{_datadir}/ublue-os/%{_sysconfdir}/sway/environment | ||
%attr(0644,root,root) %{_sysconfdir}/yum.repos.d/nvidia-container-runtime.repo | ||
%attr(0644,root,root) %{_sysconfdir}/yum.repos.d/eyecantcu-supergfxctl.repo | ||
%attr(0644,root,root) %{_sysconfdir}/nvidia-container-runtime/config-rootless.toml | ||
%attr(0644,root,root) %{_datadir}/selinux/packages/nvidia-container.pp | ||
|
||
%changelog | ||
* Thu Aug 3 2023 RJ Trujillo <eyecantcu@pm.me> - 0.8 | ||
- Add new copr for supergfxctl | ||
|
||
* Sat Jun 17 2023 Benjamin Sherman <benjamin@holyarmy.org> - 0.7 | ||
- Remove MOK keys; now provided by ublue-os-akmods-addons | ||
|
||
* Sat Jun 17 2023 RJ Trujillo <eyecantcu@pm.me> - 0.6 | ||
- Add supergfxctl-plasmoid COPR | ||
|
||
* Wed May 17 2023 Benjamin Sherman <benjamin@holyarmy.org> - 0.5 | ||
- Add new ublue akmod public key for MOK enrollment | ||
|
||
* Sun Mar 26 2023 Joshua Stone <joshua.gage.stone@gmail.com> - 0.4 | ||
- Add asus-linux COPR | ||
|
||
* Fri Feb 24 2023 Joshua Stone <joshua.gage.stone@gmail.com> - 0.3 | ||
- Add sway environment file | ||
- Put ublue-os modifications into a separate data directory | ||
|
||
* Thu Feb 16 2023 Joshua Stone <joshua.gage.stone@gmail.com> - 0.2 | ||
- Add nvidia-container-runtime repo | ||
- Add nvidia-container-runtime selinux policy file | ||
- Re-purpose into a general-purpose add-on package | ||
- Update URL to point to ublue-os project | ||
|
||
* Fri Feb 03 2023 Joshua Stone <joshua.gage.stone@gmail.com> - 0.1 | ||
- Add key for enrolling kernel modules in alpha builds |