Changeset 4311
- Timestamp:
- 01/24/07 22:05:49 (6 years ago)
- Location:
- lm-sensors/trunk
- Files:
-
- 2 modified
-
CHANGES (modified) (1 diff)
-
prog/detect/sensors-detect (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
lm-sensors/trunk/CHANGES
r4308 r4311 9 9 Add VIA CX700 detection 10 10 Drop legacy W83627HF ISA detection 11 Don't bufferize stdout during probes 11 12 12 13 -
lm-sensors/trunk/prog/detect/sensors-detect
r4310 r4311 2932 2932 printf "Client found at address 0x%02x\n",$addr; 2933 2933 2934 $| = 1; 2934 2935 foreach $chip (@chip_ids) { 2935 2936 if (exists $chip->{i2c_addrs} and contains $addr, @{$chip->{i2c_addrs}}) { … … 2963 2964 } 2964 2965 } 2966 $| = 0; 2965 2967 } 2966 2968 } … … 2969 2971 { 2970 2972 my ($chip,$addr,$conf); 2973 $| = 1; 2971 2974 foreach $chip (@chip_ids) { 2972 2975 next if not exists $chip->{isa_addrs} or not exists $chip->{isa_detect}; … … 2990 2993 } 2991 2994 } 2995 $| = 0; 2992 2996 } 2993 2997 … … 3108 3112 printf("Probing for Super-I/O at 0x\%x/0x\%x\n", $addrreg, $datareg); 3109 3113 3114 $| = 1; 3110 3115 FAMILY: 3111 3116 foreach my $family (@superio_ids) { … … 3144 3149 exit_superio($addrreg, $datareg); 3145 3150 } 3151 $| = 0; 3146 3152 } 3147 3153 … … 5638 5644 print "Do you want to scan for them? (YES/no): "; 5639 5645 unless (<STDIN> =~ /^\s*n/i) { 5646 $| = 1; 5640 5647 foreach my $entry (@cpu_ids) { 5641 5648 scan_cpu($entry); 5642 5649 } 5650 $| = 0; 5643 5651 } 5644 5652 print "\n";
