mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 10:17:14 +08:00
ba93c6c6b9
broadcom: rebuild for 3.1 ndiswrapper: dito vhba-module: dito tiacx: seems we have to drop it
17 lines
383 B
Plaintext
17 lines
383 B
Plaintext
post_install() {
|
|
echo ">> Place 'vhba' in MODULES= in /etc/rc.conf to enable vhba on system boot."
|
|
echo ">> This module needs to be recompiled for every kernel version upgrade."
|
|
KERNEL_VERSION='3.1-CHAKRA'
|
|
depmod $KERNEL_VERSION > /dev/null 2>&1
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install
|
|
}
|
|
|
|
post_remove() {
|
|
KERNEL_VERSION='3.1-CHAKRA'
|
|
depmod $KERNEL_VERSION > /dev/null 2>&1
|
|
}
|
|
|