Changeset 5326
- Timestamp:
- 09/09/08 11:30:38 (3 months ago)
- Files:
-
- lm-sensors/branches/lm-sensors-3.0.0/CHANGES (modified) (1 diff)
- lm-sensors/branches/lm-sensors-3.0.0/prog/pwm/pwmconfig (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
lm-sensors/branches/lm-sensors-3.0.0/CHANGES
r5324 r5326 9 9 Test MINSTOP before MINSTART 10 10 Use better step values for MINSTOP test 11 Print the revision and date at start-up 12 Detect and report obviously incorrect fan speeds 11 13 sensors-detect: Add Intel SCH (bus) support 12 14 Add SMSC EMC6D103 support lm-sensors/branches/lm-sensors-3.0.0/prog/pwm/pwmconfig
r5325 r5326 354 354 fi 355 355 356 local threshold=100000 356 357 let pwm=$MAX 357 358 pwmenable $P … … 369 370 # this will return the first field if there's only one (sysfs) 370 371 S=`cat $F | cut -d' ' -f2` 371 echo " PWM $pwm FAN $S" 372 # Fan speed should never increase significantly 373 if [ $S -gt $threshold ] 374 then 375 echo " PWM $pwm FAN $S (probably incorrect)" 376 else 377 echo " PWM $pwm FAN $S" 378 let threshold=S*6/5 379 fi 380 372 381 if [ "$PLOT" = "y" ] 373 382 then
