summaryrefslogtreecommitdiffstats
path: root/perl-install/detect_devices.pm
diff options
context:
space:
mode:
authorFrancois Pons <fpons@mandriva.com>2001-04-11 16:54:28 +0000
committerFrancois Pons <fpons@mandriva.com>2001-04-11 16:54:28 +0000
commita84f6450900ed7bd50236ffb98c5d5af44d927ad (patch)
tree856e76f73c31bd5493c9fd31521896a37c06a216 /perl-install/detect_devices.pm
parent29a062eec66fe21d3ccfeb08b8eeb92814df7c49 (diff)
downloaddrakx-a84f6450900ed7bd50236ffb98c5d5af44d927ad.tar
drakx-a84f6450900ed7bd50236ffb98c5d5af44d927ad.tar.gz
drakx-a84f6450900ed7bd50236ffb98c5d5af44d927ad.tar.bz2
drakx-a84f6450900ed7bd50236ffb98c5d5af44d927ad.tar.xz
drakx-a84f6450900ed7bd50236ffb98c5d5af44d927ad.zip
avoid need of shell for live upgrade on serial_probe (removed 2>/dev/null which
is not necessary).
Diffstat (limited to 'perl-install/detect_devices.pm')
-rw-r--r--perl-install/detect_devices.pm2
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};