2
0
mirror of https://github.com/lm-sensors/lm-sensors synced 2025-09-02 23:35:57 +00:00

Add detection for Intel Atom thermal sensors.

git-svn-id: http://lm-sensors.org/svn/lm-sensors/trunk@5773 7894878c-1315-0410-8ee3-d5d059ff63e0
This commit is contained in:
Jean Delvare
2009-09-20 08:23:02 +00:00
parent 7d3bddb1fa
commit c65c353ad9
2 changed files with 3 additions and 1 deletions

View File

@@ -17,6 +17,7 @@ SVN-HEAD
Rename the modprobe configuration file to lm_sensors.conf Rename the modprobe configuration file to lm_sensors.conf
Drop AMD K10 detection (unreliable sensors) Drop AMD K10 detection (unreliable sensors)
Add detection for AMD Family 11h thermal sensors Add detection for AMD Family 11h thermal sensors
Add detection for Intel Atom thermal sensors
sysconfig-lm_sensors-convert: Fix exit code sysconfig-lm_sensors-convert: Fix exit code
3.1.1 (2009-06-21) 3.1.1 (2009-06-21)

View File

@@ -5275,7 +5275,8 @@ sub coretemp_detect
$probecpu->{model} == 15 || $probecpu->{model} == 15 ||
$probecpu->{model} == 0x16 || $probecpu->{model} == 0x16 ||
$probecpu->{model} == 0x17 || $probecpu->{model} == 0x17 ||
$probecpu->{model} == 0x1a)) { $probecpu->{model} == 0x1a ||
$probecpu->{model} == 0x1c)) { # Atom
return 9; return 9;
} }
} }