mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
15 lines
339 B
Text
15 lines
339 B
Text
post_install() {
|
|
KERNEL_VERSION='2.6.30-ARCH'
|
|
depmod -v $KERNEL_VERSION > /dev/null 2>&1
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install $1
|
|
rmmod nouveau || echo 'In order to use the new nouneau module, exit Xserver and unload it manually.'
|
|
}
|
|
|
|
post_remove() {
|
|
KERNEL_VERSION='2.6.30-ARCH'
|
|
depmod -v $KERNEL_VERSION > /dev/null 2>&1
|
|
}
|
|
|