mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 11:47:14 +08:00
18 lines
406 B
Plaintext
18 lines
406 B
Plaintext
EXTRAMODULES='extramodules-3.9-CHAKRA'
|
|
|
|
post_install() {
|
|
systemd-tmpfiles --create lirc.conf
|
|
echo ">>> Updating module dependencies. Please wait ..."
|
|
depmod $(cat /lib/modules/$EXTRAMODULES/version) > /dev/null 2>&1
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install
|
|
}
|
|
|
|
post_remove() {
|
|
echo ">>> Updating module dependencies. Please wait ..."
|
|
depmod $(cat /lib/modules/$EXTRAMODULES/version) > /dev/null 2>&1
|
|
}
|
|
|