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

post_upgrade() {
    EXTRAMODULES='extramodules-3.11-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.11-custom'
    depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
}