blob: b93fbbb45b496c0505319333455d84fb5c38e759 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
post_install() {
cat<<EOF
Unload and load kernel modules (8192eu is provided by rtl8192eu-dkms):
rmmod rtl8xxxu
modprobe 8192eu
EOF
}
post_upgrade() {
post_install
}
|