summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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];