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

22 lines
455 B
Plaintext
Raw Normal View History

2014-06-21 04:34:35 +00:00
# arg 1: the new package version
# arg 2: the old package version
KERNEL_NAME=-armv7-rc
2017-01-24 01:00:39 +00:00
KERNEL_VERSION=4.10.0-rc4-1-ARCH
2014-06-21 04:34:35 +00:00
post_install () {
# updating module dependencies
echo ">>> Updating module dependencies. Please wait ..."
depmod ${KERNEL_VERSION}
}
post_upgrade() {
# updating module dependencies
echo ">>> Updating module dependencies. Please wait ..."
depmod ${KERNEL_VERSION}
}
2017-01-24 01:00:39 +00:00
post_remove() {
rm -f boot/initramfs-linux.img
}