1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-08-22 07:35:51 +03:00
openwrt-xburst/package/mmc_over_gpio/files/mmc_over_gpio.init
mb a1856d0731 Update GPIO-based MMC driver
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11864 3c298f89-4303-0410-b956-a3cf2f4a3e73
2008-07-18 20:53:08 +00:00

26 lines
510 B
Bash

#!/bin/sh /etc/rc.common
# Copyright (C) 2008 OpenWrt.org
START=90
SYSFS="/sys"
SYSFS_DRIVERDIR="$SYSFS/bus/platform/drivers/gpiommc"
# add_device(name, DI_pin, DO_pin, CLK_pin, CS_pin, mode)
add_device() {
echo -n "$1" "$2" "$3" "$4" "$5" "$6" > $SYSFS_DRIVERDIR/add
}
# remove_device(name)
remove_device() {
echo -n "$1" > $SYSFS_DRIVERDIR/remove
}
start() {
#FIXME we should use a config file, but I dunno how that parser works.
add_device "default" 5 4 3 7 0
}
stop() {
remove_device "default"
}