PKGBUILDs/core/linux-sun5i/linux-sun5i.install

25 lines
694 B
Plaintext
Raw Normal View History

2013-01-19 06:06:31 +00:00
# arg 1: the new package version
# arg 2: the old package version
KERNEL_NAME=-sun5i
KERNEL_VERSION=3.0.57-1
2013-01-19 06:06:31 +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 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}
}