summaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorkhali <khali@7894878c-1315-0410-8ee3-d5d059ff63e0>2007-09-19 12:06:36 +0000
committerkhali <khali@7894878c-1315-0410-8ee3-d5d059ff63e0>2007-09-19 12:06:36 +0000
commitce172135c7bff1ac3a770de3284812bf86a02190 (patch)
treeee2a20fdfe978d95d0ec312bee44d3dec7f6806d /etc
parent9d994fec4264760941a54e4927b64d9e2fee6654 (diff)
downloadlm-sensors-ce172135c7bff1ac3a770de3284812bf86a02190.tar.gz
Add some more conversion rules for the thmc50 and adm1022.
git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@4814 7894878c-1315-0410-8ee3-d5d059ff63e0
Diffstat (limited to 'etc')
-rwxr-xr-xetc/sensors-conf-convert6
1 files changed, 6 insertions, 0 deletions
diff --git a/etc/sensors-conf-convert b/etc/sensors-conf-convert
index b1405761..57cf77f6 100755
--- a/etc/sensors-conf-convert
+++ b/etc/sensors-conf-convert
@@ -165,10 +165,16 @@ BEGIN
"thmc50" => {
qr/\btemp_hyst\b/ => sub { "temp1_min" },
qr/\bremote_temp_hyst\b/ => sub { "temp2_min" },
+ qr/\bremote_temp2\b/ => sub { "temp3" },
+ qr/\bremote_temp2_hyst\b/ => sub { "temp3_min" },
+ qr/\bremote_temp2_over\b/ => sub { "temp3_max" },
},
"adm1022" => {
qr/\btemp_hyst\b/ => sub { "temp1_min" },
qr/\bremote_temp_hyst\b/ => sub { "temp2_min" },
+ qr/\bremote_temp2\b/ => sub { "temp3" },
+ qr/\bremote_temp2_hyst\b/ => sub { "temp3_min" },
+ qr/\bremote_temp2_over\b/ => sub { "temp3_max" },
},
"adm1026" => {
qr/\bfan(\d)(|_div|_min)\b/ => sub { "fan".($1+1).$2 },