PKGBUILDs/core/linux-armv7/linux-armv7.install

24 lines
510 B
Plaintext
Raw Normal View History

2013-05-31 22:02:36 +00:00
# arg 1: the new package version
# arg 2: the old package version
KERNEL_NAME=-armv7
2017-02-22 01:37:50 +00:00
KERNEL_VERSION=4.10.0-1-ARCH
2013-05-31 22:02:36 +00:00
post_install () {
# updating module dependencies
echo ">>> Updating module dependencies. Please wait ..."
depmod ${KERNEL_VERSION}
echo "NOTE: Using this kernel requires an updated U-Boot!"
}
post_upgrade() {
# updating module dependencies
echo ">>> Updating module dependencies. Please wait ..."
depmod ${KERNEL_VERSION}
}
2017-02-22 01:37:50 +00:00
post_remove() {
rm -f boot/initramfs-linux.img
}