blob: e29b7a231c2bbb6cb203a054392dc641a6e136e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
post_install() {
cat <<END
>>> You must tell Xorg to use the nvidia driver with kernels >=5.11.0.
You must also set IgnoreABI option with Xorg version >= 21.1.1.
Minimal config example provided in /usr/share/nvidia-340xx-lts/20-nvidia.conf
which you should manually place in /etc/X11/xorg.conf.d/
END
}
post_upgrade() {
post_install
}
|