mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
14 lines
280 B
Text
14 lines
280 B
Text
post_install() {
|
|
KERNEL_VERSION='2.6.30-ARCH'
|
|
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.30-ARCH'
|
|
depmod $KERNEL_VERSION
|
|
}
|