mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 23:47:13 +08:00
15 lines
292 B
Plaintext
15 lines
292 B
Plaintext
|
post_install() {
|
||
|
KERNEL_VERSION='2.6.35-CHAKRA-LTS'
|
||
|
depmod $KERNEL_VERSION
|
||
|
}
|
||
|
|
||
|
post_upgrade() {
|
||
|
post_install
|
||
|
rmmod nvidia || echo 'In order to use the new nvidia module, exit Xserver and unload it manually.'
|
||
|
}
|
||
|
|
||
|
post_remove() {
|
||
|
KERNEL_VERSION='2.6.35-CHAKRA-LTS'
|
||
|
depmod $KERNEL_VERSION
|
||
|
}
|