summarylogtreecommitdiffstats
path: root/rtl8189es-git.install
blob: 20be616521277790ed1d52b7f02d355c22597fcb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
post_install() {
   echo "Installing the module 8189es"
   depmod -a
   modprobe 8189es
}

post_upgrade() {
   depmod -a
}

post_remove() {
   echo "Module removal 8189es"
   rmmod 8189es
   depmod -a
}