2012-07-18 15:14:04 +00:00
|
|
|
# arg 1: the new package version
|
|
|
|
# arg 2: the old package version
|
|
|
|
|
|
|
|
KERNEL_NAME=-kirkwood
|
2017-09-17 20:43:19 +00:00
|
|
|
KERNEL_VERSION=4.4.88-1-ARCH
|
2012-07-18 15:14:04 +00:00
|
|
|
|
|
|
|
post_install () {
|
|
|
|
# updating module dependencies
|
|
|
|
echo ">>> Updating module dependencies. Please wait ..."
|
|
|
|
depmod ${KERNEL_VERSION}
|
2012-07-18 15:29:18 +00:00
|
|
|
|
2015-11-28 06:14:37 +00:00
|
|
|
echo ">>> Generating initial ramdisk, using mkinitcpio. Please wait..."
|
|
|
|
mkinitcpio -p linux${KERNEL_NAME}
|
|
|
|
|
2012-07-18 15:29:18 +00:00
|
|
|
echo "**********************************************************************"
|
|
|
|
echo "WARNING! This kernel requires a newer U-Boot than many devices such as"
|
|
|
|
echo " the Dockstar and Pogoplug v2 originally came with. If you do"
|
|
|
|
echo " not have an updated version, your system WILL NOT BOOT."
|
|
|
|
echo "**********************************************************************"
|
2012-07-18 15:14:04 +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 " You probably just broke your system. Congratulations."
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
# updating module dependencies
|
|
|
|
echo ">>> Updating module dependencies. Please wait ..."
|
|
|
|
depmod ${KERNEL_VERSION}
|
2015-11-28 06:14:37 +00:00
|
|
|
|
|
|
|
echo ">>> Generating initial ramdisk, using mkinitcpio. Please wait..."
|
|
|
|
mkinitcpio -p linux${KERNEL_NAME}
|
|
|
|
}
|
|
|
|
|
|
|
|
post_remove() {
|
|
|
|
# also remove the compat symlinks
|
|
|
|
rm -f boot/initramfs-linux.img
|
2012-07-18 15:14:04 +00:00
|
|
|
}
|