mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-15 06:59:05 +08:00
19 lines
246 B
Plaintext
19 lines
246 B
Plaintext
|
post_install() {
|
||
|
KERNEL_VERSION=2.6.35-CHAKRA
|
||
|
depmod $KERNEL_VERSION
|
||
|
}
|
||
|
|
||
|
post_upgrade() {
|
||
|
KERNEL_VERSION=2.6.35-CHAKRA
|
||
|
depmod $KERNEL_VERSION
|
||
|
}
|
||
|
|
||
|
post_remove() {
|
||
|
KERNEL_VERSION=2.6.35-CHAKRA
|
||
|
depmod $KERNEL_VERSION
|
||
|
}
|
||
|
|
||
|
op=$1
|
||
|
shift
|
||
|
$op $*
|