Author: kaloz Date: 2015-03-31 21:12:27 +0200 (Tue, 31 Mar 2015) New Revision: 45195
Modified: trunk/target/linux/mvebu/base-files/sbin/fan_ctrl.sh Log: mvebu: deal with the new path in the fan control script for Linux 4.0+ Signed-off-by: Imre Kaloz <[email protected]> Modified: trunk/target/linux/mvebu/base-files/sbin/fan_ctrl.sh =================================================================== --- trunk/target/linux/mvebu/base-files/sbin/fan_ctrl.sh 2015-03-31 18:31:08 UTC (rev 45194) +++ trunk/target/linux/mvebu/base-files/sbin/fan_ctrl.sh 2015-03-31 19:12:27 UTC (rev 45195) @@ -11,10 +11,18 @@ WIFI_LOW=100 WIFI_HIGH=115 +if [ -d /sys/devices/pwm_fan ];then + FAN_CTRL=/sys/devices/pwm_fan/hwmon/hwmon0/pwm1 +elif [ -d /sys/devices/platform/pwm_fan ];then + FAN_CTRL=/sys/devices/platform/pwm_fan/hwmon/hwmon0/pwm1 +else + exit 0 +fi + if [ "$CPU_TEMP" -ge "$CPU_HIGH" -o "$DDR_TEMP" -ge "$DDR_HIGH" -o "$WIFI_TEMP" -ge "$WIFI_HIGH" ];then - echo "255" > /sys/devices/pwm_fan/hwmon/hwmon0/pwm1 + echo "255" > $FAN_CTRL elif [ "$CPU_TEMP" -ge "$CPU_LOW" -o "$DDR_TEMP" -ge "$DDR_LOW" -o "$WIFI_TEMP" -ge "$WIFI_LOW" ];then - echo "100" > /sys/devices/pwm_fan/hwmon/hwmon0/pwm1 + echo "100" > $FAN_CTRL else - echo "0" > /sys/devices/pwm_fan/hwmon/hwmon0/pwm1 + echo "0" > $FAN_CTRL fi _______________________________________________ openwrt-commits mailing list [email protected] https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-commits
