PKGBUILDs/core/linux-odroid-xu3/linux-odroid-xu3.install
2021-05-13 00:17:55 -06:00

22 lines
455 B
Plaintext

# arg 1: the new package version
# arg 2: the old package version
KERNEL_NAME=-odroid-xu3
KERNEL_VERSION=4.14.180-2-ARCH
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}
}
post_remove() {
rm -f boot/initramfs-linux.img
}