summaryrefslogtreecommitdiffstats
path: root/perl-install/any.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2002-07-19 21:19:21 +0000
committerPascal Rigaux <pixel@mandriva.com>2002-07-19 21:19:21 +0000
commit66ff0e21bc1f61bd1968fb754a6930bce2f80a45 (patch)
tree404cfe4f1d55cbc7312a1cd3f650fdfaf898bde2 /perl-install/any.pm
parentc3469dbbba8df03e28b992a1a1467a047241ca10 (diff)
downloaddrakx-66ff0e21bc1f61bd1968fb754a6930bce2f80a45.tar
drakx-66ff0e21bc1f61bd1968fb754a6930bce2f80a45.tar.gz
drakx-66ff0e21bc1f61bd1968fb754a6930bce2f80a45.tar.bz2
drakx-66ff0e21bc1f61bd1968fb754a6930bce2f80a45.tar.xz
drakx-66ff0e21bc1f61bd1968fb754a6930bce2f80a45.zip
(devfssymlinkf): use devfs_device instead of device when available
Diffstat (limited to 'perl-install/any.pm')
-rw-r--r--perl-install/any.pm9
1 files changed, 5 insertions, 4 deletions
diff --git a/perl-install/any.pm b/perl-install/any.pm
index 69519938d..7d94bc826 100644
--- a/perl-install/any.pm
+++ b/perl-install/any.pm
@@ -445,7 +445,7 @@ sub pppConfig {
$modem or return;
if ($modem->{device} ne "/dev/modem") {
- devfssymlinkf($modem->{device}, 'modem', $prefix) or log::l("creation of $prefix/dev/modem failed")
+ devfssymlinkf($modem, 'modem', $prefix) or log::l("creation of $prefix/dev/modem failed")
}
$in->do_pkgs->install('ppp') if !$::testing;
@@ -943,7 +943,8 @@ sub report_bug {
}
sub devfssymlinkf {
- my ($if, $of, $prefix) = @_;
+ my ($o_if, $of, $prefix) = @_;
+ my $if = $o_if->{devfs_device} || $o_if->{device};
symlinkf($if, "$prefix/dev/$of");
output_p("$prefix/etc/devfs/conf.d/$of.conf",
@@ -1138,10 +1139,10 @@ sub config_dvd {
log::l("configuring DVD");
#- create /dev/dvd symlink
each_index {
- devfssymlinkf($_->{device}, 'dvd' . ($::i ? $::i + 1 : ''), $prefix);
+ devfssymlinkf($_, 'dvd' . ($::i ? $::i + 1 : ''), $prefix);
} @dvds;
if (my $raw_dev = alloc_raw_device($prefix, 'dvd')) {
- devfssymlinkf($raw_dev, 'rdvd', $prefix);
+ devfssymlinkf({ device => $raw_dev }, 'rdvd', $prefix);
}
}
}