mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-17 23:34:07 +00:00
19 lines
317 B
Text
19 lines
317 B
Text
post_install() {
|
|
cat << EOM
|
|
>>> PLEASE ADD PROPER OPTIONS IN /etc/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:
|