blob: e55329bb87eca69f06808902fe3541618b2c4500 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
post_install() {
cat <<EOF
In order to automatically disable the NVIDIA graphic card at boot:
- blacklist the "nvidia" module in /etc/modprobe.d/
- enable the "nvidia-xrun-pm" systemd service
If you experience problems with nvidia-xrun-pm:
- check https://github.com/michelesr/nvidia-xrun-pm#setting-the-right-bus-id
EOF
}
post_upgrade() {
post_install $1
}
|