Changeset 4107
- Timestamp:
- 08/23/06 20:19:58 (7 years ago)
- Files:
-
- 1 modified
-
lm-sensors/trunk/prog/detect/sensors-detect (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
lm-sensors/trunk/prog/detect/sensors-detect
r4106 r4107 5228 5228 5229 5229 # Now determine the chip probe lines 5230 $modprobes .= "# I2C chip drivers\n";5230 $modprobes .= "# Chip drivers\n"; 5231 5231 foreach $chip (@chips_detected) { 5232 5232 next if not @{$chip->{detected}}; … … 5431 5431 } 5432 5432 5433 print "\nSome chips are also accessible through the ISA bus. ISA probes are\n".5433 print "\nSome chips are also accessible through the ISA I/O ports. ISA probes are\n". 5434 5434 "typically a bit more dangerous, as we have to write to I/O ports to do\n". 5435 "this. This is usually safe though.\n\n"; 5435 "this. This is usually safe though.\n". 5436 "Yes, you do have ISA I/O ports even if you do not have any ISA slots!\n\n"; 5436 5437 if ($> != 0) { 5437 5438 print "As you are not root, we shall skip this step.\n"; 5438 5439 } else { 5439 print "Do you want to scan the ISA bus? (YES/no): ";5440 print "Do you want to scan the ISA I/O ports? (YES/no): "; 5440 5441 unless (<STDIN> =~ /^\s*n/i) { 5441 5442 initialize_ioports();
