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

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