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