diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-02-20 14:45:40 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-02-20 14:45:40 +0000 |
commit | 120e94af912fc1666b7afbfda7ee055bb3e7f0fa (patch) | |
tree | 6c4d7886f98b4921ee3388ce1875cd96505ddfb8 /perl-install | |
parent | d6f4f90089a21b6ae9fd041bea6ec848c94431c3 (diff) | |
download | drakx-120e94af912fc1666b7afbfda7ee055bb3e7f0fa.tar drakx-120e94af912fc1666b7afbfda7ee055bb3e7f0fa.tar.gz drakx-120e94af912fc1666b7afbfda7ee055bb3e7f0fa.tar.bz2 drakx-120e94af912fc1666b7afbfda7ee055bb3e7f0fa.tar.xz drakx-120e94af912fc1666b7afbfda7ee055bb3e7f0fa.zip |
{brltty}{device} is optional, default is ttyS0 or ttyS1 (?)
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/install2.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install2.pm b/perl-install/install2.pm index 39154c658..c6ca5a9a6 100644 --- a/perl-install/install2.pm +++ b/perl-install/install2.pm @@ -531,7 +531,7 @@ sub main { chmod 0755, "/usr/bin/brltty"; } eval { modules::load("serial") }; - devices::make($o->{brltty}{device}); + devices::make($_) foreach $o->{brltty}{device} ? $o->{brltty}{device} : qw(ttyS0 ttyS1); devices::make("vcsa"); run_program::run("brltty"); } |