2011-08-08 22:57:46 +00:00
|
|
|
# arg 1: the new package version
|
|
|
|
# arg 2: the old package version
|
|
|
|
|
|
|
|
KERNEL_NAME=
|
2013-02-12 00:14:04 +00:00
|
|
|
KERNEL_VERSION=3.1.10-16-ARCH
|
2011-08-08 22:57:46 +00:00
|
|
|
|
|
|
|
post_install () {
|
|
|
|
# updating module dependencies
|
|
|
|
echo ">>> Updating module dependencies. Please wait ..."
|
|
|
|
depmod ${KERNEL_VERSION}
|
|
|
|
}
|
|
|
|
|
|
|
|
post_upgrade() {
|
|
|
|
if grep "^[^#]*[[:space:]]/boot" etc/fstab 2>&1 >/dev/null; then
|
|
|
|
if ! grep "[[:space:]]/boot" etc/mtab 2>&1 >/dev/null; then
|
2011-11-09 19:36:06 +00:00
|
|
|
echo "WARNING: /boot appears to be a seperate partition but is not mounted."
|
2012-01-29 22:23:21 +00:00
|
|
|
echo " You probably just broke your system. Congratulations."
|
2011-08-08 22:57:46 +00:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
# updating module dependencies
|
|
|
|
echo ">>> Updating module dependencies. Please wait ..."
|
|
|
|
depmod ${KERNEL_VERSION}
|
|
|
|
}
|