core/tiacx/acx.install

20 lines
421 B
Plaintext
Raw Normal View History

2010-03-28 22:22:50 +08:00
# arg 1: the new package version
post_install() {
2010-05-16 23:08:55 +08:00
KERNEL_VERSION='2.6.33-ARCH'
2010-03-28 22:22:50 +08:00
depmod $KERNEL_VERSION > /dev/null 2>&1
}
# arg 1: the new package version
# arg 2: the old package version
post_upgrade() {
2010-05-16 23:08:55 +08:00
KERNEL_VERSION='2.6.33-ARCH'
2010-03-28 22:22:50 +08:00
depmod $KERNEL_VERSION > /dev/null 2>&1
}
# arg 1: the old package version
post_remove() {
2010-05-16 23:08:55 +08:00
KERNEL_VERSION='2.6.33-ARCH'
2010-03-28 22:22:50 +08:00
depmod $KERNEL_VERSION > /dev/null 2>&1
}