Until the maintainer updates the package it seems that in manjaro it already contains the required patches. So you can get them from there and edit the PKGBUILD locally to include it.
Very very rough instructions, assuming ~/builds/nvidia-470xx-utils/ is where you have the local AUR package cloned.
git clone https://gitlab.manjaro.org/packages/extra/nvidia-470xx-utils.git manjaro-470xx
cp manjaro-470xx/nvidia-470xx-fix-linux-6.19-part1.patch ~/builds/nvidia-470xx-utils/
cp manjaro-470xx/nvidia-470xx-fix-linux-6.19-part2.patch ~/builds/nvidia-470xx-utils/
cd ~/builds/nvidia-470xx-utils
Now edit PKGBUILD.
In source=(), add these two lines right after the existing nvidia-470xx-fix-linux-6.17.patch line:
"nvidia-470xx-fix-linux-6.19-part1.patch"
"nvidia-470xx-fix-linux-6.19-part2.patch"
Then in prepare(), add two more patch-application lines right after the existing 6.17 patch line. It should look roughly like this:
patch -p1 -i "${srcdir}/nvidia-470xx-fix-linux-6.17.patch"
patch -p1 -i "${srcdir}/nvidia-470xx-fix-linux-6.19-part1.patch"
patch -p1 -i "${srcdir}/nvidia-470xx-fix-linux-6.19-part2.patch"
Then regenerate checksums with updpkgsums
And finally do a fresh rebuild
rm -rf src pkg *.pkg.tar.*
makepkg -fis
It worked for me ™
Pinned Comments
SoftExpert commented on 2025-02-09 10:20 (UTC) (edited on 2026-03-08 12:31 (UTC) by SoftExpert)
For the beginners in need of assistance, first take a look at this recommended guide https://github.com/korvahannu/arch-nvidia-drivers-installation-guide - maybe it helps to solve the issues your are having with this version of the driver.
The majority of patches used in this package are provided by Joan Bruguera to whom we owe a tremendous depth of gratitude !
There is also the repository shared by phobos1641, where he has gathered all the patches that work for his configuration.