aboutsummaryrefslogtreecommitdiff
path: root/target/linux/apm821xx/base-files/etc/init.d/hwmon_fancontrol
blob: c1f159cafe4a84691840cdd4c6cf2b0437641453 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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_mode"
		;;
	esac
}