summaryrefslogtreecommitdiffstats
path: root/nvidia-custom/nvidia.install
blob: 3219c9599fbd0437fc2cf20dcc4346367e309b4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
post_install() {
    EXTRAMODULES='extramodules-3.12-custom'
    depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
    echo 'In order to use nvidia module, reboot the system.'
}

post_upgrade() {
    EXTRAMODULES='extramodules-3.12-custom'
    depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
    if  [ "$(vercmp $2 310.19-2)" -lt 0 ]; then
        echo 'If your card is from the 7xxx series or earlier, install nvidia-304xx'
    fi
}

post_remove() {
    EXTRAMODULES='extramodules-3.12-custom'
    depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
}