Changeset 5814
- Timestamp:
- 12/20/09 18:11:48 (3 years ago)
- Location:
- lm-sensors/trunk
- Files:
-
- 2 modified
-
CHANGES (modified) (1 diff)
-
prog/detect/sensors-detect (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
lm-sensors/trunk/CHANGES
r5811 r5814 29 29 Support upcoming sysfs path to i2c adapters 30 30 Rename the modprobe configuration file to lm_sensors.conf 31 Only report AMD Family 10h CPU with model > 231 Only report AMD Family 10h CPU with working sensors 32 32 Add detection for AMD Family 11h thermal sensors 33 33 Add detection for Intel Atom thermal sensors -
lm-sensors/trunk/prog/detect/sensors-detect
r5813 r5814 5397 5397 $probecpu->{'cpu family'} == 0x10; 5398 5398 5399 next if $probecpu->{model} == 2; # DR-B* 5400 next if $probecpu->{model} == 4 && 5401 $probecpu->{stepping} <= 2; # RB-C2 5399 next if $probecpu->{model} < 4; # DR-B* 5402 5400 next if $probecpu->{model} == 8; # HY-D0 5401 if ($probecpu->{model} == 4) { # RB-C* 5402 my @dram_cfg = split /\n/, `setpci -d 1022:1202 94.L 2>/dev/null`; 5403 next unless @dram_cfg >= 1; 5404 next unless hex($dram_cfg[0]) & 0x00000100; # DDR3 5405 } 5403 5406 5404 5407 return 9;
