summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES1
-rwxr-xr-xprog/detect/sensors-detect3
2 files changed, 3 insertions, 1 deletions
diff --git a/CHANGES b/CHANGES
index 9cb6020f..b36da1d1 100644
--- a/CHANGES
+++ b/CHANGES
@@ -40,6 +40,7 @@ SVN-HEAD
Fix detection of SMSC LPC47M292
Add SMSC LPC47M233 support
Fix SMBus detection of W83627EHF and W83627DHG
+ Add Intel Core I7 support
2.10.7 (20080701)
Library: Don't choke on unrecognized devices, part 2
diff --git a/prog/detect/sensors-detect b/prog/detect/sensors-detect
index 797939e9..7936a3a8 100755
--- a/prog/detect/sensors-detect
+++ b/prog/detect/sensors-detect
@@ -5544,7 +5544,8 @@ sub coretemp_detect
($probecpu->{'model'} == 14 ||
$probecpu->{'model'} == 15 ||
$probecpu->{'model'} == 0x16 ||
- $probecpu->{'model'} == 0x17)) {
+ $probecpu->{'model'} == 0x17 ||
+ $probecpu->{'model'} == 0x1a)) {
return 9;
}
}