diff options
Diffstat (limited to 'target/linux/apm821xx/base-files/etc')
-rw-r--r-- | target/linux/apm821xx/base-files/etc/init.d/hwmon_fancontrol | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/target/linux/apm821xx/base-files/etc/init.d/hwmon_fancontrol b/target/linux/apm821xx/base-files/etc/init.d/hwmon_fancontrol new file mode 100644 index 0000000000..d38964e015 --- /dev/null +++ b/target/linux/apm821xx/base-files/etc/init.d/hwmon_fancontrol @@ -0,0 +1,15 @@ +#!/bin/sh /etc/rc.common + +START=98 + +boot() { + # configuring 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 + + case $(board_name) in + netgear,wndr4700) + path_to_hwmon='/sys/devices/platform/plb/plb:opb/4ef600700.i2c/i2c-0/0-001b/hwmon/hwmon1' + echo 1 > "$path_to_hwmon/pwm1_enable" + ;; + esac +} |