updated on Tue Jan 10 12:02:00 UTC 2012
[aur-mirror.git] / rtl8192ce / rtl8192ce.install
blobd75e51477bd3de6bba0d2a2c3618b5943347c38f
1 refresh_depmod()
3         echo "updating kernel modules..."
4         depmod -a
7 print_usage()
9         echo "======================================================================"
10         echo "New Kernel Module Installed: r8192ce_pci."
11         echo "Depending on your system setup you may need to load the module"
12         echo "manually, for example:"
13         echo ""
14         echo "sudo modprobe r8192ce_pci"
15         echo ""
16         echo "Documentation and scripts provided with the source are located at"
17         echo ""
18         echo "/usr/share/rtl8192ce"
19         echo "======================================================================"
23 post_install()
25         refresh_depmod
26         print_usage
30 post_upgrade()
32         refresh_depmod
33         print_usage
36 post_remove()
38         refresh_depmod
41 op=$1
42 shift
44 $op $*