summaryrefslogtreecommitdiffstats
path: root/perl-install/modules.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/modules.pm')
-rw-r--r--perl-install/modules.pm4
1 files changed, 4 insertions, 0 deletions
diff --git a/perl-install/modules.pm b/perl-install/modules.pm
index f1008829b..968c3a514 100644
--- a/perl-install/modules.pm
+++ b/perl-install/modules.pm
@@ -534,6 +534,10 @@ sub load_thiskind($;&$) {
eval { load($_, $type); push @devs, "imm" };
last if !$@;
}
+ #- hey, we're allowed to pci probe :) let's do a lot of probing!
+ if (my ($c) = pci_probing::main::probe('AUDIO')) {
+ modules::add_alias("sound", $c->[1]) if pci_probing::main::check($c->[1]);
+ }
}
@devs, map { [ $_, $_ ] } @{$loaded{$type} || []};
}