PKGBUILDs/core/linux-clearfog/linux-clearfog.install

29 lines
914 B
Plaintext
Raw Normal View History

2015-12-08 10:35:54 +00:00
# arg 1: the new package version
# arg 2: the old package version
KERNEL_NAME=-clearfog
2017-04-27 17:18:58 +00:00
KERNEL_VERSION=4.4.63-2-ARCH
2015-12-08 10:35:54 +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
echo "WARNING: /boot appears to be a separate partition but is not mounted"
2015-12-08 10:35:54 +00:00
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}
2016-08-10 08:31:49 +00:00
echo "NOTE: You will probably need to copy /boot/zImage to the first partition"
2015-12-08 10:35:54 +00:00
echo " of your SD card."
}