Changeset 5127
- Timestamp:
- 02/20/08 20:33:56 (5 years ago)
- Location:
- lm-sensors/trunk
- Files:
-
- 2 modified
-
CHANGES (modified) (1 diff)
-
prog/detect/sensors-detect (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
lm-sensors/trunk/CHANGES
r5125 r5127 46 46 Add SMSC SCH5027D detection 47 47 Do not access I/O ports on PPC 48 Move south bridge sensor detection to the right 49 section 48 50 Program unhide_ICH_SMBus: Add support for the 82801AA (ICH) 49 51 -
lm-sensors/trunk/prog/detect/sensors-detect
r5125 r5127 1328 1328 }, 1329 1329 { 1330 name => "Silicon Integrated Systems SIS5595",1331 driver => "sis5595",1332 isa_addrs => [ 0 ],1333 isa_detect => sub { sis5595_pci_detect(); },1334 },1335 {1336 name => "VIA VT82C686 Integrated Sensors",1337 driver => "via686a",1338 isa_addrs => [ 0 ],1339 isa_detect => sub { via686a_pci_detect(); },1340 },1341 {1342 name => "VIA VT8231 Integrated Sensors",1343 driver => "vt8231",1344 isa_addrs => [ 0 ],1345 isa_detect => sub { via8231_pci_detect(); },1346 },1347 {1348 1330 name => "VIA VT1211 (I2C)", 1349 1331 driver => "use-isa-instead", … … 2152 2134 @cpu_ids = ( 2153 2135 { 2136 name => "Silicon Integrated Systems SIS5595", 2137 driver => "sis5595", 2138 detect => sub { sis5595_pci_detect(); }, 2139 }, 2140 { 2141 name => "VIA VT82C686 Integrated Sensors", 2142 driver => "via686a", 2143 detect => sub { via686a_pci_detect(); }, 2144 }, 2145 { 2146 name => "VIA VT8231 Integrated Sensors", 2147 driver => "vt8231", 2148 detect => sub { via8231_pci_detect(); }, 2149 }, 2150 { 2154 2151 name => "AMD K8 thermal sensors", 2155 2152 driver => "k8temp", … … 3257 3254 next if not exists $chip->{isa_addrs} or not exists $chip->{isa_detect}; 3258 3255 foreach $addr (@{$chip->{isa_addrs}}) { 3259 printf("\%-60s", sprintf("Probing for `\%s'\ %s... ", $chip->{name},3260 $addr ? sprintf(" at 0x\%x", $addr) : ''));3256 printf("\%-60s", sprintf("Probing for `\%s'\ at 0x\%x... ", $chip->{name}, 3257 $addr)); 3261 3258 $conf = &{$chip->{isa_detect}} ($addr); 3262 3259 print("No\n"), next if not defined $conf; … … 5838 5835 } 5839 5836 5840 print "Some CPUs or memory controllers may also contain embedded sensors.\n";5841 print " Do you want to scan for them? (YES/no): ";5837 print "Some south bridges, CPUs or memory controllers may also contain \n"; 5838 print "embedded sensors. Do you want to scan for them? (YES/no): "; 5842 5839 unless (<STDIN> =~ /^\s*n/i) { 5843 5840 $| = 1;
