mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
20 lines
461 B
Text
20 lines
461 B
Text
|
# arg 1: the new package version
|
||
|
# arg 2: the old package version
|
||
|
|
||
|
KERNEL_NAME=-armv7-rc
|
||
|
KERNEL_VERSION=3.16.0-1-ARCH
|
||
|
|
||
|
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}
|
||
|
}
|