mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 19:57:14 +08:00
14 lines
263 B
Plaintext
14 lines
263 B
Plaintext
post_upgrade() {
|
|
for i in /usr/lib/modules/extramodules-*
|
|
do
|
|
if [ -f "$i/version" ]
|
|
then
|
|
depmod $(cat "$i/version")
|
|
fi
|
|
done
|
|
}
|
|
|
|
post_install() {
|
|
post_upgrade
|
|
}
|