Changeset 4935

Show
Ignore:
Timestamp:
10/09/07 15:03:08 (1 year ago)
Author:
khali
Message:

Fix some conversion rules for the adm1024.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • lm-sensors/branches/lm-sensors-3.0.0/etc/sensors-conf-convert

    r4894 r4935  
    156156                        qr/"12V(|_min|_max)"/           => sub { "in4$1" }, 
    157157                        qr/\bVccp2(|_min|_max)\b/       => sub { "in5$1" }, 
     158                        qr/\btemp_hyst\b/               => sub { "temp1_min" }, 
    158159                        qr/\btemp(\d)\b/                => sub { "temp".($1+1) }, 
    159                         qr/\btemp(\d)_hyst\b/           => sub { "temp".($1+1)."_max_hyst" }, 
     160                        qr/\btemp(\d)_hyst\b/           => sub { "temp".($1+1)."_min" }, 
    160161                        qr/\btemp(\d)_over\b/           => sub { "temp".($1+1)."_max" }, 
    161162                },