From: <kr...@us...> - 2006-08-10 16:07:44
|
Revision: 212 Author: krisk84 Date: 2006-08-10 09:07:35 -0700 (Thu, 10 Aug 2006) ViewCVS: http://svn.sourceforge.net/astlinux/?rev=212&view=rev Log Message: ----------- add lmsensors setup call to init script Modified Paths: -------------- trunk/package/lmsensors/lmsensors.init Added Paths: ----------- trunk/target/device/net4801/target_skeleton/stat/ trunk/target/device/net4801/target_skeleton/stat/etc/ trunk/target/device/net4801/target_skeleton/stat/etc/sensors.conf Modified: trunk/package/lmsensors/lmsensors.init =================================================================== --- trunk/package/lmsensors/lmsensors.init 2006-08-10 16:05:25 UTC (rev 211) +++ trunk/package/lmsensors/lmsensors.init 2006-08-10 16:07:35 UTC (rev 212) @@ -31,7 +31,7 @@ then modprobe -q pc87360 init=1 fi - +lmsensors -s fi } Added: trunk/target/device/net4801/target_skeleton/stat/etc/sensors.conf =================================================================== --- trunk/target/device/net4801/target_skeleton/stat/etc/sensors.conf (rev 0) +++ trunk/target/device/net4801/target_skeleton/stat/etc/sensors.conf 2006-08-10 16:07:35 UTC (rev 212) @@ -0,0 +1,117 @@ +chip "pc87366-*" + +# Soekris net4801 configuration + +# Written by Henrik Brix Andersen <br...@ge...> +# Latest version can be found at http://dev.gentoo.org/~brix/ + +# The configuration is partly based on the PC87366 datasheet and +# partly borrowed from the env4801 utility by Poul-Henning +# Kamp <ph...@ph...> + +# Datasheet: http://www.winbond.com/PDF/APCsheet/PC87366.pdf +# env4801: http://phk.freebsd.dk/soekris/env4801/ + + +# Voltage inputs + ignore vid + + # Unknown + # label in0 "avi0" + ignore in0 + + + # Core Voltage, +2.0V + label in1 "VCORE" + set in1_min 1.9 + set in1_max 2.1 + + + # VCC, +5.0V + label in2 "VCC" + compute in2 @*2, @/2 + + + # Power Supply Input, +6.0V - +28.0V + label in3 "VPWR" + compute in3 @*20.1, @/20.1 + set in3_min 6.0 + set in3_max 28.0 + + + # +12V + label in4 "+12V" + compute in4 @*4.83, @/4.83 + set in4_min 11 + set in4_max 13 + + + # -12V + label in5 "-12V" + # If in10 on your net4801 doesn't have the 3.3V reference, use this + # compute line instead: + # compute in5 (@-3.3)*19.2+3.3, (@-3.3)/19.2+3.3 + compute in5 (@-in10)*19.2+in10, (@-in10)/19.2+in10 + set in5_min -13 + set in5_max -11 + + + # GND, 0V + label in6 "GND" + set in6_min 0 + set in6_max 0 + + + # Standby Voltage, +3.3V + # Internally divided by 2 + label in7 "Vsb" + compute in7 @*2, @/2 + set in7_min 3.0 + set in7_max 3.6 + + + # Supply Voltage, +3.3V + # Internally divided by 2 + label in8 "Vdd" + compute in8 @*2, @/2 + set in8_min 3.0 + set in8_max 3.6 + + + # Battery Backup Supply Voltage, +3.0V + label in9 "Vbat" + set in9_min 2.4 + set in9_max 3.6 + + + # Analog Supply Voltage, +3.3V + # Internally divided by 2 + label in10 "AVdd" + compute in10 @*2, @/2 + set in10_min 3.0 + set in10_max 3.6 + + +# Temperature inputs + ignore temp1 + ignore temp2 + + # PC87366 Internal Temperature + # PC87366 Recommended Operating Conditions: 0 - 70C + # SC1100 Recommended Operating Conditions: 0 - 85C + label temp3 "Temp" + label temp3_crit "Critical" + set temp3_min 0 + set temp3_max 70 + set temp3_crit 85 + + + ignore temp4 + ignore temp5 + ignore temp6 + + +# Fan inputs + ignore fan1 + ignore fan2 + ignore fan3 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |