repo.or.cz
/
aur-mirror.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
updated on Sun Jan 15 08:01:04 UTC 2012
[aur-mirror.git]
/
psmouse-alps
/
psmouse.install
blob
d7e49ccf55199e8ef69b33045dba013b37bda885
1
post_install() {
2
echo " > Running depmod now..."
3
depmod -a
4
echo " > Reloading psmouse module... Do not panic if your mouse pointer does"
5
echo " not move for a moment!"
6
echo " Please note that you may REBOOT your system to get it works!"
7
modprobe -r psmouse
8
sleep 0.5
9
modprobe psmouse
10
}
11
12
post_upgrade() {
13
post_install
14
}
15
16
post_remove() {
17
post_install
18
}
19