summaryrefslogtreecommitdiffstats
path: root/perl-install/install
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mageia.org>2012-05-23 18:28:03 +0000
committerThierry Vignaud <tv@mageia.org>2012-05-23 18:28:03 +0000
commit0bf66f2a2a47628e8fa2f576541f45de827fdffd (patch)
treeccd6e26d950d203d2521a373c6054a0763818151 /perl-install/install
parent6420f7b80a627d2dc6d7af20ef13372087fdfa9b (diff)
downloaddrakx-backup-do-not-use-0bf66f2a2a47628e8fa2f576541f45de827fdffd.tar
drakx-backup-do-not-use-0bf66f2a2a47628e8fa2f576541f45de827fdffd.tar.gz
drakx-backup-do-not-use-0bf66f2a2a47628e8fa2f576541f45de827fdffd.tar.bz2
drakx-backup-do-not-use-0bf66f2a2a47628e8fa2f576541f45de827fdffd.tar.xz
drakx-backup-do-not-use-0bf66f2a2a47628e8fa2f576541f45de827fdffd.zip
no need to create /dev/zero and the like, udev already did it
quite a lot more remain as we either lack prope udev rules or rely on older style entries or are needed in drakx-in-chroot mode
Diffstat (limited to 'perl-install/install')
-rw-r--r--perl-install/install/NEWS1
-rw-r--r--perl-install/install/commands.pm2
-rw-r--r--perl-install/install/install2.pm3
3 files changed, 3 insertions, 3 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS
index 43a16efb8..0fd3e5ed2 100644
--- a/perl-install/install/NEWS
+++ b/perl-install/install/NEWS
@@ -1,3 +1,4 @@
+- do not create /dev/ entries created by udev
- kill last remanents of kernel-2.4.x support
- package group selection:
o remember minimal install values when clicking "previous"
diff --git a/perl-install/install/commands.pm b/perl-install/install/commands.pm
index 154a9cfb1..f89002a27 100644
--- a/perl-install/install/commands.pm
+++ b/perl-install/install/commands.pm
@@ -276,7 +276,7 @@ sub hexdump {
sub more {
@ARGV = @_;
require devices;
- my $tty = devices::make('tty');
+ my $tty = '/dev/tty';
my $n = 0;
open(my $IN, $tty) or die "cannot open $tty\n";
local $_;
diff --git a/perl-install/install/install2.pm b/perl-install/install/install2.pm
index 05d3c8a14..065c88515 100644
--- a/perl-install/install/install2.pm
+++ b/perl-install/install/install2.pm
@@ -347,8 +347,7 @@ sub pre_init_brltty() {
sub init_brltty() {
symlink "/tmp/stage2/$_", $_ foreach "/etc/brltty";
- devices::make($_) foreach $o->{brltty}{device} ? $o->{brltty}{device} : qw(ttyS0 ttyS1);
- devices::make("vcsa");
+ devices::make($_) foreach $o->{brltty}{device};
run_program::run("brltty");
}