mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
1dc34166bd
Disable CONFIG_CGROUP_PIDS https://archlinuxarm.org/forum/viewtopic.php?f=60&t=15367 https://github.com/hardkernel/linux/issues/337
21 lines
455 B
Text
21 lines
455 B
Text
# arg 1: the new package version
|
|
# arg 2: the old package version
|
|
|
|
KERNEL_NAME=-odroid-xu3
|
|
KERNEL_VERSION=4.14.180-3-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
|
|
}
|