updated on Wed Jan 11 00:07:16 UTC 2012
[aur-mirror.git] / fwlanusb / fwlanusb.install
blob91c261c270c8195d4420609514b22b060a3a6502
1  # arg 1:  the new package version
2 post_install() {
3 cat << EOF
4 ==> After inserting the stick it could take about one minute to bring up the
5 ==> net device wlan0. This is cause there is a windows driver data partition
6 ==> on the stick which is found first.
7 ==> URGENT: If you have perviously used this stick with ndiswrapper remove
8 ==> the ndiswrapper drivers and remove the association for wlan0 to ndiswrapper
9 ==> in /etc/modprobe.conf!
11 EOF
12   # updating module dependencies
13   echo ">>> Updating module dependencies. Please wait ..."
14   KERNEL_VERSION=2.6.24-ARCH
15   depmod -v $KERNEL_VERSION > /dev/null 2>&1
18 # arg 1:  the new package version
19 # arg 2:  the old package version
20 post_upgrade() {
21   post_install $1
24 # arg 1:  the old package version
25 post_remove() {
26   # updating module dependencies
27   echo ">>> Updating module dependencies. Please wait ..."
28   KERNEL_VERSION=2.6.24-ARCH
29   depmod -v $KERNEL_VERSION > /dev/null 2>&1
32 op=$1
33 shift
34 $op $*