diff options
Diffstat (limited to 'target/device/valka/target_skeleton/etc/rc.d/onewire')
-rwxr-xr-x | target/device/valka/target_skeleton/etc/rc.d/onewire | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/target/device/valka/target_skeleton/etc/rc.d/onewire b/target/device/valka/target_skeleton/etc/rc.d/onewire deleted file mode 100755 index 332215463..000000000 --- a/target/device/valka/target_skeleton/etc/rc.d/onewire +++ /dev/null @@ -1,34 +0,0 @@ -#!/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" |