From e3f95b61643277cf14c8a428a4724f59b0e450ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20B=C3=BCsch?= Date: Fri, 21 Mar 2008 17:38:16 +0000 Subject: mmc_over_gpio: Add initscript that will create a device Note that we should use a config file where we can define an arbitrary number of devices. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10638 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/mmc_over_gpio/files/mmc_over_gpio.init | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 package/mmc_over_gpio/files/mmc_over_gpio.init (limited to 'package/mmc_over_gpio/files') diff --git a/package/mmc_over_gpio/files/mmc_over_gpio.init b/package/mmc_over_gpio/files/mmc_over_gpio.init new file mode 100644 index 0000000000..88d9e41027 --- /dev/null +++ b/package/mmc_over_gpio/files/mmc_over_gpio.init @@ -0,0 +1,25 @@ +#!/bin/sh /etc/rc.common +# Copyright (C) 2008 OpenWrt.org +START=90 + +SYSFS="/sys" +SYSFS_DRIVERDIR="$SYSFS/bus/platform/drivers/spi-gpio-mmc" + +# 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" +} -- cgit v1.2.3