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