Changeset 4107

Show
Ignore:
Timestamp:
08/23/06 20:19:58 (7 years ago)
Author:
ruik
Message:

Adjust the user interaction messages (ISA bus versus ISA ports, remove word I2C from chip drivers comment)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lm-sensors/trunk/prog/detect/sensors-detect

    r4106 r4107  
    52285228 
    52295229  # Now determine the chip probe lines 
    5230   $modprobes .= "# I2C chip drivers\n"; 
     5230  $modprobes .= "# Chip drivers\n"; 
    52315231  foreach $chip (@chips_detected) { 
    52325232    next if not @{$chip->{detected}}; 
     
    54315431  } 
    54325432 
    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". 
    54345434        "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"; 
    54365437  if ($> != 0) { 
    54375438    print "As you are not root, we shall skip this step.\n"; 
    54385439  } 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): "; 
    54405441    unless (<STDIN> =~ /^\s*n/i) { 
    54415442      initialize_ioports();