diff options
| author | Christian Lamparter | 2024-03-23 18:50:22 +0000 |
|---|---|---|
| committer | Christian Lamparter | 2024-03-23 20:22:47 +0000 |
| commit | cf6849a6bf8002abf761dd25f74dd0b086b65fa2 (patch) | |
| tree | 9b4b4365f7484aaff02983379ad9063cc341a3da | |
| parent | 6b007d2512ad02d08f7e9fc7ad74801ce1330924 (diff) | |
| download | openwrt-cf6849a6bf8002abf761dd25f74dd0b086b65fa2.tar.gz | |
apm821xx: WNDR4700: fix fan-control
This service was unfunctional due to not having its executable bit set.
Furthermore, sysupgrade complains about the file being present in images.
Also, the tc654 driver doesn't provide pwm1_enable sysfs file, instead its
now called pwm1_mode.
Please note that the fan was always spinning. It should now turn off, when
there's enough the thermal headroom.
Signed-off-by: Christian Lamparter <chunkeey@gmail.com>
| -rwxr-xr-x[-rw-r--r--] | target/linux/apm821xx/base-files/etc/init.d/hwmon_fancontrol | 2 |
1 files changed, 1 insertions, 1 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 index d38964e015..c1f159cafe 100644..100755 --- a/target/linux/apm821xx/base-files/etc/init.d/hwmon_fancontrol +++ b/target/linux/apm821xx/base-files/etc/init.d/hwmon_fancontrol @@ -9,7 +9,7 @@ boot() { 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" + echo 1 > "$path_to_hwmon/pwm1_mode" ;; esac } |