2011-08-08 17:00:07 +08:00
|
|
|
# arg 1: the new package version
|
|
|
|
# arg 2: the old package version
|
|
|
|
|
2012-06-18 11:49:04 +08:00
|
|
|
KERNEL_NAME=-lts
|
2012-10-01 09:11:55 +08:00
|
|
|
KERNEL_VERSION=3.0.43-1-lts
|
2011-08-08 17:00:07 +08:00
|
|
|
|
|
|
|
post_install () {
|
|
|
|
# updating module dependencies
|
|
|
|
echo ">>> Updating module dependencies. Please wait ..."
|
|
|
|
depmod ${KERNEL_VERSION}
|
|
|
|
echo ">>> Generating initial ramdisk, using mkinitcpio. Please wait..."
|
2012-06-19 20:37:12 +08:00
|
|
|
mkinitcpio -p linux${KERNEL_NAME}
|
2011-08-08 17:00:07 +08:00
|
|
|
|
2012-06-18 11:49:04 +08:00
|
|
|
|
|
|
|
# add compat symlinks for the initramfs images
|
|
|
|
ln -sf initramfs-linux${KERNEL_NAME}.img boot/kernel26${KERNEL_NAME}.img
|
|
|
|
ln -sf initramfs-linux${KERNEL_NAME}-fallback.img \
|
|
|
|
boot/kernel26${KERNEL_NAME}-fallback.img
|
|
|
|
ln -sf vmlinuz-linux${KERNEL_NAME} /boot/vmlinuz26${KERNEL_NAME}
|
2011-08-08 17:00:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
post_upgrade() {
|
|
|
|
pacman -Q grub &>/dev/null
|
|
|
|
hasgrub=$?
|
|
|
|
pacman -Q grub2 &>/dev/null
|
|
|
|
hasgrub2=$?
|
|
|
|
pacman -Q lilo &>/dev/null
|
|
|
|
haslilo=$?
|
|
|
|
# reminder notices
|
|
|
|
if [ $haslilo -eq 0 ]; then
|
|
|
|
echo ">>>"
|
|
|
|
if [ $hasgrub -eq 0 -o $hasgrub2 -eq 0 ]; then
|
|
|
|
echo ">>> If you use the LILO bootloader, you should run 'lilo' before rebooting."
|
|
|
|
else
|
|
|
|
echo ">>> You appear to be using the LILO bootloader. You should run"
|
|
|
|
echo ">>> 'lilo' before rebooting."
|
|
|
|
fi
|
|
|
|
echo ">>>"
|
|
|
|
fi
|
|
|
|
|
2012-02-21 00:10:33 +08:00
|
|
|
if findmnt --fstab -uno SOURCE /boot &>/dev/null && ! mountpoint -q /boot; then
|
|
|
|
echo "WARNING: /boot appears to be a separate partition but is not mounted."
|
2011-08-08 17:00:07 +08:00
|
|
|
fi
|
|
|
|
|
|
|
|
# updating module dependencies
|
|
|
|
echo ">>> Updating module dependencies. Please wait ..."
|
|
|
|
depmod ${KERNEL_VERSION}
|
|
|
|
echo ">>> Generating initial ramdisk, using mkinitcpio. Please wait..."
|
2012-06-18 06:41:38 +08:00
|
|
|
mkinitcpio -p linux${KERNEL_NAME}
|
2011-08-08 17:00:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
post_remove() {
|
|
|
|
# also remove the compat symlinks
|
|
|
|
rm -f boot/{initramfs-linux,kernel26}${KERNEL_NAME}.img
|
|
|
|
rm -f boot/{initramfs-linux,kernel26}${KERNEL_NAME}-fallback.img
|
|
|
|
}
|
2012-06-18 06:41:38 +08:00
|
|
|
|
|
|
|
|