summaryrefslogtreecommitdiffstats
path: root/perl-install/modules.pm
diff options
context:
space:
mode:
authordamien <damien@mandriva.com>2000-08-18 00:51:26 +0000
committerdamien <damien@mandriva.com>2000-08-18 00:51:26 +0000
commit774c58ace31a6fe39478f45d9efc8afe1df377cb (patch)
tree3cb6c60bfa794fb181d8d4f2407cb633bb52fff8 /perl-install/modules.pm
parent4b1a0158c98d0e35c0a4a75ba3e6dac636b22bc8 (diff)
downloaddrakx-774c58ace31a6fe39478f45d9efc8afe1df377cb.tar
drakx-774c58ace31a6fe39478f45d9efc8afe1df377cb.tar.gz
drakx-774c58ace31a6fe39478f45d9efc8afe1df377cb.tar.bz2
drakx-774c58ace31a6fe39478f45d9efc8afe1df377cb.tar.xz
drakx-774c58ace31a6fe39478f45d9efc8afe1df377cb.zip
see changelog.
Diffstat (limited to 'perl-install/modules.pm')
-rw-r--r--perl-install/modules.pm5
1 files changed, 4 insertions, 1 deletions
diff --git a/perl-install/modules.pm b/perl-install/modules.pm
index 9fc52570e..56b04629a 100644
--- a/perl-install/modules.pm
+++ b/perl-install/modules.pm
@@ -96,6 +96,9 @@ arch() =~ /^sparc/ ? (
"parport_pc" => "parport_pc",
"sunrpc" => "sunrpc",
}],
+[ 'isdn', {
+ "hisax" => "hisax",
+}],
[ 'scsi', {
arch() =~ /^sparc/ ? (
"qlogicpti" => "Performance Technologies ISP",
@@ -524,7 +527,7 @@ sub load_thiskind($;&$) {
my ($type, $f, $pcic) = @_;
my %loaded_text;
- my @devs = detect_devices::matching_type($type, $pcic);
+ my @devs = grep { my $l = $drivers{$_->{driver}}; $l && $l->{type} eq $type } detect_devices::probeall('', $pcip);
log::l("probe found " . scalar @devs . " $type devices");
my %devs; foreach (@devs) {