diff options
Diffstat (limited to 'perl-install/modules.pm')
-rw-r--r-- | perl-install/modules.pm | 5 |
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) { |