mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
17 lines
214 B
Text
17 lines
214 B
Text
KERNEL_VERSION='2.6.30-ARCH'
|
|
|
|
post_install() {
|
|
depmod -v $KERNEL_VERSION >/dev/null 2>&1
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install $1
|
|
}
|
|
|
|
post_remove() {
|
|
depmod -v $KERNEL_VERSION >/dev/null 2>&1
|
|
}
|
|
|
|
op=$1
|
|
shift
|
|
$op $*
|