]> git.pld-linux.org Git - packages/em8300.git/blobdiff - em8300.init
- updated to 0.18.0 (kernel part not verified)
[packages/em8300.git] / em8300.init
index ecc0c7d33f4b4f853e9b5dbdba7ba3af7e26ed48..3235dbc187f7a24828ccd37f4f0e25ca971e63db 100644 (file)
@@ -1,10 +1,10 @@
 #!/bin/sh
 #
-# chkconfig: 2345 11 89
-# description: loads em8300 modules and uploads microcode
+# chkconfig:   2345 11 89
+# description: loads em8300 modules and uploads microcode
 
-if [ ! -f /etc/sysconfig/em8300 ] ; then
-   exit 0
+if [ ! -f /etc/sysconfig/em8300 ]; then
+       exit 0
 fi
 
 # Source function library.
@@ -12,27 +12,36 @@ fi
 
 . /etc/sysconfig/em8300
 
-load_module () { run_cmd "Loading module $1" modprobe "$*"; }
+start() {
+       is_yes "$BT_LOAD" && _modprobe single bt865 $BT_OPT
+       _modprobe single adv717x $ADV_OPT
+       _modprobe single em8300 $EM_OPT
+       run_cmd "Uploading em8300 microcode" "sh -c 'em8300setup 2>/dev/null'"
+       [ $? -ne 0 ] && RETVAL=1
+}
 
+stop() {
+       run_cmd "Removing em8300 modules" "sh -c 'rmmod em8300 adv717x bt865 2>/dev/null'"
+}
+
+RETVAL=0
 # See how we were called.
 case "$1" in
-  start)
-       is_yes "$BT_LOAD" && load_module bt865 $BT_OPT
-       load_module adv717x $ADV_OPT
-       load_module em8300 $EM_OPT
-       run_cmd "Uploading em8300 microcode" "sh -c 'em8300_microcode_upload 2>/dev/null'"
+  start|reload|force-reload)
+       start
        ;;
   stop)
-        run_cmd "Removing em8300 modules" "sh -c 'rmmod em8300 adv717x bt865 2>/dev/null'"
+       stop
+       ;;
+  status)
        ;;
   restart)
-       $0 stop
-       $0 start
+       stop
+       start
        ;;
   *)
-       msg_usage "$0 {start|stop|restart}"
-       exit 1
+       msg_usage "$0 {start|stop|restart|reload|force-reload|status}"
+       exit 3
 esac
 
-exit 0
-
+exit $RETVAL
This page took 0.360343 seconds and 4 git commands to generate.