diff options
author | Imre Kaloz <kaloz@openwrt.org> | 2015-01-26 20:41:43 +0000 |
---|---|---|
committer | Imre Kaloz <kaloz@openwrt.org> | 2015-01-26 20:41:43 +0000 |
commit | 7be967e954ad5d602a0bc8616f129be7a999ebce (patch) | |
tree | ddcb14d00b846b94ebd7e80094cc7cc3166f68f8 /target/linux/mvebu/base-files/sbin | |
parent | 3483c76084c8fe08020f22cafccfc3cf7ef82d28 (diff) | |
download | upstream-7be967e954ad5d602a0bc8616f129be7a999ebce.tar.gz upstream-7be967e954ad5d602a0bc8616f129be7a999ebce.tar.bz2 upstream-7be967e954ad5d602a0bc8616f129be7a999ebce.zip |
mvebu: temporary el cheapo' fan control script
Signed-off-by: Imre Kaloz <kaloz@openwrt.org>
SVN-Revision: 44153
Diffstat (limited to 'target/linux/mvebu/base-files/sbin')
-rwxr-xr-x | target/linux/mvebu/base-files/sbin/fan_ctrl.sh | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/target/linux/mvebu/base-files/sbin/fan_ctrl.sh b/target/linux/mvebu/base-files/sbin/fan_ctrl.sh new file mode 100755 index 0000000000..f7f4e0598d --- /dev/null +++ b/target/linux/mvebu/base-files/sbin/fan_ctrl.sh @@ -0,0 +1,20 @@ +#!/bin/sh + +CPU_TEMP=`cut -c1-2 /sys/class/hwmon/hwmon2/temp1_input` +DDR_TEMP=`cut -c1-2 /sys/class/hwmon/hwmon1/temp1_input` +WIFI_TEMP=`cut -c1-2 /sys/class/hwmon/hwmon1/temp2_input` + +CPU_LOW=85 +CPU_HIGH=95 +DDR_LOW=65 +DDR_HIGH=75 +WIFI_LOW=100 +WIFI_HIGH=115 + +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 +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 +else + echo "0" > /sys/devices/pwm_fan/hwmon/hwmon0/pwm1 +fi |