2012-09-04 12:57:56 +00:00
|
|
|
# arg 1: the new package version
|
2012-09-18 17:16:48 +00:00
|
|
|
# arg 2: the old package versio
|
2012-09-04 12:57:56 +00:00
|
|
|
|
2012-09-18 17:16:48 +00:00
|
|
|
KERNEL_VERSION=3.0.6-rc6-ARCH
|
2012-09-04 12:57:56 +00:00
|
|
|
|
|
|
|
post_install () {
|
|
|
|
# updating module dependencies
|
|
|
|
echo ">>> Updating module dependencies. Please wait ..."
|
|
|
|
depmod ${KERNEL_VERSION}
|
2012-09-18 17:16:48 +00:00
|
|
|
sync
|
2012-09-04 12:57:56 +00:00
|
|
|
|
2012-09-17 09:42:17 +00:00
|
|
|
# echo "NOTE: You will probably need to copy /boot/uImage to the first partition"
|
|
|
|
# echo " of your SD card."
|
2012-09-04 12:57:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
post_upgrade() {
|
|
|
|
if grep "^[^#]*[[:space:]]/boot" etc/fstab 2>&1 >/dev/null; then
|
|
|
|
if ! grep "[[:space:]]/boot" etc/mtab 2>&1 >/dev/null; then
|
|
|
|
echo "WARNING: /boot appears to be a seperate partition but is not mounted"
|
|
|
|
echo " This is most likely not what you want. Please mount your /boot"
|
|
|
|
echo " partition and reinstall the kernel unless you are sure this is OK"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
# updating module dependencies
|
|
|
|
echo ">>> Updating module dependencies. Please wait ..."
|
|
|
|
depmod ${KERNEL_VERSION}
|
2012-09-18 17:16:48 +00:00
|
|
|
sync
|
|
|
|
# echo "NOTE: You will probably need to copy /boot/uImage to the first partition"
|
|
|
|
# echo " of your SD card."
|
2012-09-04 12:57:56 +00:00
|
|
|
}
|