summaryrefslogtreecommitdiffstats
path: root/target/device/valka/target_skeleton/etc/rc.d/onewire
diff options
context:
space:
mode:
authorJohn Voltz <john.voltz@gmail.com>2008-03-06 18:59:14 +0000
committerJohn Voltz <john.voltz@gmail.com>2008-03-06 18:59:14 +0000
commitceaf9e8217f29f6c499d03c62612b2eb50e8ed09 (patch)
treec0d1c53c52d050672de9c2fc656b760a2fbe5aa1 /target/device/valka/target_skeleton/etc/rc.d/onewire
parentc46893b7af0e6f0bbc072dc76cb979995ff654fc (diff)
downloadbuildroot-novena-ceaf9e8217f29f6c499d03c62612b2eb50e8ed09.tar.gz
buildroot-novena-ceaf9e8217f29f6c499d03c62612b2eb50e8ed09.zip
updates and additions for avr32 arch
Diffstat (limited to 'target/device/valka/target_skeleton/etc/rc.d/onewire')
-rwxr-xr-xtarget/device/valka/target_skeleton/etc/rc.d/onewire34
1 files changed, 34 insertions, 0 deletions
diff --git a/target/device/valka/target_skeleton/etc/rc.d/onewire b/target/device/valka/target_skeleton/etc/rc.d/onewire
new file mode 100755
index 000000000..332215463
--- /dev/null
+++ b/target/device/valka/target_skeleton/etc/rc.d/onewire
@@ -0,0 +1,34 @@
+#!/bin/ash
+. /etc/rc.subr
+
+start() {
+ if checkyesno ${onewire_thermal_enable}; then
+ echo -n " * Loading 1wire thermal module: "
+ if ${modprobe_program} w1_therm; then
+ echo "Ok"
+ else
+ echo "Failed"
+ fi
+ fi
+ if checkyesno ${onewire_id_enable}; then
+ echo -n " * Loading 1wire id module: "
+ if ${modprobe_program} w1_ds2433; then
+ echo "Ok"
+ else
+ echo "Failed"
+ fi
+ fi
+
+ echo -n " * Loading 1wire module: "
+ if ${modprobe_program} ds2482 force=0,0x18; then
+ echo "Ok"
+ else
+ echo "Failed"
+ fi
+}
+
+stop() {
+ return 0
+}
+
+rc_run_command "$1" "onewire"