mirror of
https://github.com/archlinux/aur.git
synced 2026-02-09 14:34:42 +01:00
fix: depmod failed for kernel version problem Signed-off-by: Haruue Icymoon <haruue@caoyue.com.cn>
11 lines
250 B
Text
11 lines
250 B
Text
KERNEL_VERSION=4.16.0-2-usermodelinux
|
|
|
|
post_install() {
|
|
echo ">>> Updating module dependencies. Please wait ..."
|
|
depmod ${KERNEL_VERSION}
|
|
}
|
|
|
|
post_upgrade() {
|
|
echo ">>> Updating module dependencies. Please wait ..."
|
|
depmod ${KERNEL_VERSION}
|
|
}
|