mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-02-16 23:57:11 +00:00
20 lines
537 B
Text
20 lines
537 B
Text
# arg 1: the new package version
|
|
# arg 2: the old package version
|
|
|
|
KERNEL_NAME=-veyron
|
|
KERNEL_VERSION=3.14.0-1-ARCH
|
|
|
|
post_install () {
|
|
# updating module dependencies
|
|
echo ">>> Updating module dependencies. Please wait ..."
|
|
depmod ${KERNEL_VERSION}
|
|
|
|
echo "NOTE: You need to flash the kernel to the boot partition."
|
|
echo " For example: dd if=/boot/vmlinux.kpart of=/dev/mmcblk1p1"
|
|
}
|
|
|
|
post_upgrade() {
|
|
# updating module dependencies
|
|
echo ">>> Updating module dependencies. Please wait ..."
|
|
depmod ${KERNEL_VERSION}
|
|
}
|