mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-14 20:19:02 +08:00
removed source lines and make each PKGBUILD stand alone removed nvidia-304xx missing the LTS group and the script for fast updates, like kdeupdate.sh
16 lines
395 B
Plaintext
16 lines
395 B
Plaintext
post_install() {
|
|
EXTRAMODULES='extramodules-CHAKRA'
|
|
depmod $(cat /lib/modules/$EXTRAMODULES/version)
|
|
echo 'In order to use nvidia module, reboot the system.'
|
|
}
|
|
|
|
post_upgrade() {
|
|
EXTRAMODULES='extramodules-CHAKRA'
|
|
depmod $(cat /lib/modules/$EXTRAMODULES/version)
|
|
}
|
|
|
|
post_remove() {
|
|
EXTRAMODULES='extramodules-CHAKRA'
|
|
depmod $(cat /lib/modules/$EXTRAMODULES/version)
|
|
}
|