blob: 64a688be12250724af08608dba5b7825d1f4c727 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
post_install() {
echo "Installing the module 8852cu"
depmod -a
modprobe 8852cu
}
post_upgrade() {
depmod -a
}
post_remove() {
echo "Module removal 8852cu"
rmmod 8852cu
depmod -a
}
|