mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-10-29 22:43:48 +00:00
15 lines
330 B
Text
15 lines
330 B
Text
|
KERNEL_NAME=-armv5-rc
|
||
|
KERNEL_VERSION=3.16.0-1-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}
|
||
|
}
|