diff options
Diffstat (limited to 'perl-install/detect_devices.pm')
-rw-r--r-- | perl-install/detect_devices.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/detect_devices.pm b/perl-install/detect_devices.pm index 46bc37450..c97a23268 100644 --- a/perl-install/detect_devices.pm +++ b/perl-install/detect_devices.pm @@ -322,7 +322,7 @@ sub probeSerialDevices { print STDERR "Please wait while probing serial ports...\n"; #- start probing all serial ports... really faster than before ... #- ... but still take some time :-) - local *F; open F, "$ENV{LD_LOADER} serial_probe 2>/dev/null |"; + local *F; open F, "$ENV{LD_LOADER} serial_probe |"; local $_; my %current = (); while (<F>) { $serialprobe{$current{DEVICE}} = { %current } and %current = () if /^\s*$/ && $current{DEVICE}; |