mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
20508ec55f
Adds support for cubietruck. Changes source to http://github.com/linux-sunxi/linux-sunxi * nfs doesn't seem to work yet * neither does wifi
17 lines
396 B
Text
17 lines
396 B
Text
# arg 1: the new package version
|
|
# arg 2: the old package version
|
|
|
|
KERNEL_NAME=-sun7i
|
|
KERNEL_VERSION=3.4.79-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}
|
|
}
|