PKGBUILDs/core/linux-aarch64-rc/linux-aarch64-rc.install

28 lines
704 B
Plaintext
Raw Normal View History

2015-10-12 00:25:36 +00:00
# arg 1: the new package version
# arg 2: the old package version
2017-08-07 02:03:50 +00:00
KERNEL_NAME=-aarch64-rc
KERNEL_VERSION=4.13.0-rc3-2-ARCH
2015-10-12 00:25:36 +00:00
post_install () {
# updating module dependencies
echo ">>> Updating module dependencies. Please wait ..."
depmod ${KERNEL_VERSION}
}
post_upgrade() {
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."
fi
# updating module dependencies
echo ">>> Updating module dependencies. Please wait ..."
depmod ${KERNEL_VERSION}
}
post_remove() {
# also remove the compat symlinks
2015-10-26 00:24:01 +00:00
rm -f boot/initramfs-linux.img
rm -f boot/initramfs-linux-fallback.img
2015-10-12 00:25:36 +00:00
}