#!/usr/bin/perl @ARGV == 1 && chdir $ARGV[0] or die "usage: devices.pl \n"; if ($>) { $sudo = "sudo"; $ENV{PATH} = "/sbin:/usr/sbin:$ENV{PATH}"; } foreach () { chomp; my ($typ, $maj, $min, @l) = split; foreach (@l) { my @l2 = do { if (my ($prefix, $ini, $end) = /(.*)(\d+)-(\d+)$/) { map { "$prefix$_" } $ini .. $end; } else { $_; } }; system("$sudo mknod $_ $typ $maj " . $min++) foreach @l2; } } __DATA__ c 5 1 console b 2 0 fd0-1 c 0 0 initctl c 1 2 kmem b 7 0 loop0-15 c 1 1 mem c 1 3 null c 1 4 port b 1 1 ram b 1 0 ram0-19 b 1 0 ramdisk c 1 8 random b 11 0 scd0-7 c 0 0 stderr c 0 0 stdin c 0 0 stdout c 5 0 tty c 4 0 tty0-9 c 4 64 ttyS0-3 c 1 9 urandom c 1 5 zero b 3 0 hda hda1-16 b 3 64 hdb hdb1-16 b 22 0 hdc hdc1-16 b 22 64 hdd hdd1-16 b 33 0 hde hde1-16 b 33 64 hdf hdf1-16 b 34 0 hdg hdg1-16 b 34 64 hdh hdh1-16 b 8 0 sda sda1-15 sdb sdb1-15 sdc sdc1-15 sdd sdd1-15 sde sde1-15 sdf sdf1-15 sdg sdg1-15 sdh sdh1-15 c 10 144 nvram 2009.0'>distro/mdv2009.0 Mageia Installer and base platform for many utilitiesThierry Vignaud [tv]
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2002-07-04 12:22:08 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2002-07-04 12:22:08 +0000
commit029413d4d06828bdc2ef0536473a5d42e159286c (patch)
tree9473463a67a99b219281d1ba4986c23ec374c66a /perl-install
parent6eebc484848f133d16a2e642e798731b0595c758 (diff)
downloaddrakx-029413d4d06828bdc2ef0536473a5d42e159286c.tar
drakx-029413d4d06828bdc2ef0536473a5d42e159286c.tar.gz
drakx-029413d4d06828bdc2ef0536473a5d42e159286c.tar.bz2
drakx-029413d4d06828bdc2ef0536473a5d42e159286c.tar.xz
drakx-029413d4d06828bdc2ef0536473a5d42e159286c.zip
- POSIX is needed for POSIX::wait
- move strict and standalone require at top - c is unused - comment exceptions in devices loop (ie skip classes without any devices or any detector - optimize away $pid
Diffstat (limited to 'perl-install')
-rw-r--r--perl-install/harddrake/ui.pmbin8064 -> 8089 bytes
1 files changed, 0 insertions, 0 deletions
diff --git a/perl-install/harddrake/ui.pm b/perl-install/harddrake/ui.pm
index a5b166d38..88ebe6699 100644
--- a/perl-install/harddrake/ui.pm
+++ b/perl-install/harddrake/ui.pm
Binary files differ