blob: 3322154639e74dda26281e2762ca4d20b5f844a4 (
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
|
#!/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"
|