aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/obsolete/sharp-binary-only/sharp-sdmmc-support/sd
blob: e1c3d39ade6de14b7bdc59d20aee4fd6bc6c956c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#!/bin/sh

# rc.sd 1.00 2001/08/08 22:40:44 (Hideki Hayami)
#
# Tags for init configuration tools
#
# processname: sdmgr
# pidfile: /var/run/sdmgr.pid
# description: currently SD support is only for memory devices \
#              which is used as block device.

# Source function library.
# . /etc/rc.d/init.d/functions

MODULE=sharp_mmcsd_m

usage()
{
    echo "Usage: $0 {start|stop|status|restart|reload}"
}



if [ $# -lt 1 ] ; then usage ; break ; fi
action=$1

case "$action" in

start)
    echo -n "Start SD services:"
	/sbin/modprobe $MODULE >/dev/null
	if [ -s /var/run/sdmgr.pid ]; then
	    kill -0 `cat /var/run/sdmgr.pid` 2>/dev/null;
	else
	    /sbin/sdmgr >/dev/null 2>&1 &
	    RETVAL=$?
	    [ $RETVAL -eq 0 ] && touch /var/lock/subsys/sd
	fi
    sleep 1
    echo " sdmgr."
    ;;

stop)
    echo -n "Stop SD services:"

    /etc/sdcontrol compeject >/dev/null
    killall sdmgr

    if grep -q $MODULE /proc/modules ; then
	/sbin/rmmod $MODULE
    fi
    rm -f /var/lock/subsys/sd
    echo " sdmgr."
    ;;

status)
    ;;

restart|reload)
    $0 stop
    $0 start
    ;;

*)
    usage
    ;;

esac

exit 0