mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 19:57:14 +08:00
20 lines
328 B
Plaintext
20 lines
328 B
Plaintext
post_install() {
|
|
cat << EOM
|
|
>>> PLEASE ADD PROPER OPTIONS IN /etc/modprobe.d/modprobe.conf IF NEEDED
|
|
>>> e.g. for Series 290:
|
|
>>> echo "options acerhk force_series=290 usedritek=1 verbose=0" >> /etc/modprobe.conf
|
|
EOM
|
|
depmod -a
|
|
}
|
|
|
|
|
|
post_upgrade() {
|
|
depmod -a
|
|
}
|
|
|
|
post_remove() {
|
|
depmod -a
|
|
}
|
|
|
|
# vim:set ts=2 sw=2 et:
|