core/tiacx/acx.install

20 lines
427 B
Plaintext
Raw Normal View History

2010-03-28 22:22:50 +08:00
# arg 1: the new package version
post_install() {
2011-01-06 04:23:03 +08:00
KERNEL_VERSION='2.6.37-CHAKRA'
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() {
2011-01-06 04:23:03 +08:00
KERNEL_VERSION='2.6.37-CHAKRA'
2010-03-28 22:22:50 +08:00
depmod $KERNEL_VERSION > /dev/null 2>&1
}
# arg 1: the old package version
post_remove() {
2011-01-06 04:23:03 +08:00
KERNEL_VERSION='2.6.37-CHAKRA'
2010-03-28 22:22:50 +08:00
depmod $KERNEL_VERSION > /dev/null 2>&1
}