PKGBUILDs/core/linux/linux.install

24 lines
616 B
Plaintext
Raw Normal View History

2011-08-08 22:57:46 +00:00
# arg 1: the new package version
# arg 2: the old package version
KERNEL_NAME=
2012-01-22 08:13:29 +00:00
KERNEL_VERSION=3.2.1-1-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."
2011-08-08 22:57:46 +00:00
fi
fi
# updating module dependencies
echo ">>> Updating module dependencies. Please wait ..."
depmod ${KERNEL_VERSION}
}