Changeset 4090
- Timestamp:
- 08/11/06 09:34:32 (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
r4086 r4090 5169 5169 while (<INPUTFILE>) { 5170 5170 my ($dev_nr, $type, $adap) = /^i2c-(\d+)\s+(\S+)\s+(.*?) *(\t|$)/; 5171 next if ($type eq "dummy" );5171 next if ($type eq "dummy" || $type eq "isa"); 5172 5172 $adapters[$dev_nr]->{driver} = find_adapter_driver($adap); 5173 5173 $adapters[$dev_nr]->{adapname} = $adap; … … 5217 5217 } 5218 5218 } 5219 $modprobes .= "modprobe i2c-isa\n" if ($isa); 5219 # i2c-isa is loaded automatically (as a dependency) since 2.6.14, 5220 # and will soon be gone. 5221 $modprobes .= "modprobe i2c-isa\n" if ($isa && !kernel_version_at_least(2, 6, 18)); 5220 5222 if ($bmcsensors) { 5221 5223 $modprobes .= "# You must also install and load the IPMI modules\n";
