diff options
Diffstat (limited to 'target/linux/kirkwood/base-files')
-rwxr-xr-x | target/linux/kirkwood/base-files/etc/board.d/01_leds | 3 | ||||
-rwxr-xr-x | target/linux/kirkwood/base-files/etc/board.d/02_network | 1 | ||||
-rwxr-xr-x | target/linux/kirkwood/base-files/etc/diag.sh | 3 | ||||
-rwxr-xr-x | target/linux/kirkwood/base-files/etc/init.d/hwmon_fancontrol (renamed from target/linux/kirkwood/base-files/etc/init.d/nsa310_fancontrol) | 13 |
4 files changed, 15 insertions, 5 deletions
diff --git a/target/linux/kirkwood/base-files/etc/board.d/01_leds b/target/linux/kirkwood/base-files/etc/board.d/01_leds index 4e72e344aa..5cfc4cf309 100755 --- a/target/linux/kirkwood/base-files/etc/board.d/01_leds +++ b/target/linux/kirkwood/base-files/etc/board.d/01_leds @@ -14,6 +14,9 @@ case "$board" in ucidef_set_led_default "health" "health" "pogo_e02:green:health" "1" ucidef_set_led_default "fault" "fault" "pogo_e02:orange:fault" "1" ;; +"iom,ix2-200") + ucidef_set_led_timer "health" "health" "status:white:rebuild_led" "200" "800" + ;; "linksys,audi") ucidef_set_led_default "power" "power" "audi:green:power" "1" ;; diff --git a/target/linux/kirkwood/base-files/etc/board.d/02_network b/target/linux/kirkwood/base-files/etc/board.d/02_network index 5d66e0ffea..15e51d88f2 100755 --- a/target/linux/kirkwood/base-files/etc/board.d/02_network +++ b/target/linux/kirkwood/base-files/etc/board.d/02_network @@ -17,6 +17,7 @@ case "$board" in "cloudengines,pogoe02"|\ "cloudengines,pogoplugv4"|\ "iom,iconnect-1.1"|\ +"iom,ix2-200"|\ "raidsonic,ib-nas62x0"|\ "seagate,dockstar"|\ "seagate,goflexhome"|\ diff --git a/target/linux/kirkwood/base-files/etc/diag.sh b/target/linux/kirkwood/base-files/etc/diag.sh index 0667ad29fe..fc61846c11 100755 --- a/target/linux/kirkwood/base-files/etc/diag.sh +++ b/target/linux/kirkwood/base-files/etc/diag.sh @@ -15,6 +15,9 @@ get_status_led() { cloudengines,pogoplugv4) status_led="pogoplugv4:green:health" ;; + iom,ix2-200) + status_led="status:white:power_led" + ;; linksys,audi) status_led="audi:green:power" ;; diff --git a/target/linux/kirkwood/base-files/etc/init.d/nsa310_fancontrol b/target/linux/kirkwood/base-files/etc/init.d/hwmon_fancontrol index 10eb5aa73c..0adc5d0726 100755 --- a/target/linux/kirkwood/base-files/etc/init.d/nsa310_fancontrol +++ b/target/linux/kirkwood/base-files/etc/init.d/hwmon_fancontrol @@ -4,17 +4,20 @@ START=98 boot() { . /lib/functions.sh -#configuring lm85 onboard temp/fan controller to run the fan on its own +#configuring (lm85/lm63) onboard temp/fan controller to run the fan on its own #for more information, please read https://www.kernel.org/doc/Documentation/hwmon/sysfs-interface -path_to_hwmon='/sys/devices/platform/ocp@f1000000/f1011000.i2c/i2c-0/0-002e/hwmon/hwmon0' - case $(board_name) in - zyxel,nsa310b) +zyxel,nsa310b) + path_to_hwmon='/sys/devices/platform/ocp@f1000000/f1011000.i2c/i2c-0/0-002e/hwmon/hwmon0' echo 2 > "$path_to_hwmon/pwm1_enable" # fan is on pwm1 echo 1 > "$path_to_hwmon/pwm1_auto_channels" # temp1 is the only one that changes echo 23000 > "$path_to_hwmon/temp1_auto_temp_min" echo 43000 > "$path_to_hwmon/temp1_auto_temp_max" # next step is 49600 millicelsius, or 50 celsius, 43 celsius is better - ;; + ;; +iom,ix2-200) + path_to_hwmon='/sys/class/hwmon/hwmon0' + echo 2 > "$path_to_hwmon/pwm1_enable" # fan is on pwm1 + ;; esac } |