summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkhali <khali@7894878c-1315-0410-8ee3-d5d059ff63e0>2008-12-05 11:02:58 +0000
committerkhali <khali@7894878c-1315-0410-8ee3-d5d059ff63e0>2008-12-05 11:02:58 +0000
commitb6fe5b2a031fc020fddfc0f2aa2c7b112696ca4d (patch)
tree842fee54da34e21b02c0d20165dfd08d70efff8b
parent6d7ae3d858c7de6b99949d632dc021d135fe30af (diff)
downloadlm-sensors-b6fe5b2a031fc020fddfc0f2aa2c7b112696ca4d.tar.gz
Add Supermicro to the SMBus probing white list.
git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@5526 7894878c-1315-0410-8ee3-d5d059ff63e0
-rw-r--r--CHANGES2
-rwxr-xr-xprog/detect/sensors-detect3
2 files changed, 3 insertions, 2 deletions
diff --git a/CHANGES b/CHANGES
index 048f7c05..403848b0 100644
--- a/CHANGES
+++ b/CHANGES
@@ -41,7 +41,7 @@ SVN-HEAD
Display I2C address statictics with --stat
Document the new detection order and rules
Gather DMI data and print it at start-up
- Always probe the SMBus on Asus and Tyan boards
+ Always probe the SMBus on Asus, Tyan and Supermicro boards
Move IPMI interface detection to its own section
Skip IPMI probing on laptops
sensors-detect-stat.pl: Delete (functionality merged into sensors-detect)
diff --git a/prog/detect/sensors-detect b/prog/detect/sensors-detect
index b2583f5b..d0ca8e6e 100755
--- a/prog/detect/sensors-detect
+++ b/prog/detect/sensors-detect
@@ -5233,7 +5233,8 @@ sub main
my $by_default = ~$superio_features & (FEAT_IN | FEAT_FAN | FEAT_TEMP);
# Except on Asus and Tyan boards which often have more than
# one hardware monitoring chip
- $by_default = 1 if dmi_match('board_vendor', 'asustek', 'tyan');
+ $by_default = 1 if dmi_match('board_vendor', 'asustek', 'tyan',
+ 'supermicro');
for (my $dev_nr = 0; $dev_nr < @i2c_adapters; $dev_nr++) {
next unless exists $i2c_adapters[$dev_nr];