summaryrefslogtreecommitdiffstats
path: root/perl-install/modules.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2002-08-20 11:37:48 +0000
committerPascal Rigaux <pixel@mandriva.com>2002-08-20 11:37:48 +0000
commit21850250aa29e48bfeb3b65efee65193ea0a8e8b (patch)
treea6cb4c1c0cd9a76fa0731f1261c975823a360f04 /perl-install/modules.pm
parent5b33d959969e96048068328d6f0dbc2c6ae4db4d (diff)
downloaddrakx-21850250aa29e48bfeb3b65efee65193ea0a8e8b.tar
drakx-21850250aa29e48bfeb3b65efee65193ea0a8e8b.tar.gz
drakx-21850250aa29e48bfeb3b65efee65193ea0a8e8b.tar.bz2
drakx-21850250aa29e48bfeb3b65efee65193ea0a8e8b.tar.xz
drakx-21850250aa29e48bfeb3b65efee65193ea0a8e8b.zip
add firewire controller configuration
Diffstat (limited to 'perl-install/modules.pm')
-rw-r--r--perl-install/modules.pm4
1 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/modules.pm b/perl-install/modules.pm
index bd08427b3..6167a99e8 100644
--- a/perl-install/modules.pm
+++ b/perl-install/modules.pm
@@ -343,9 +343,11 @@ sub when_load {
add_probeall('scsi_hostadapter', $name);
eval { load('sd_mod') };
}
- add_alias('sound-slot-0', $name) if $category =~ /sound/;
load('snd-pcm-oss') if $name =~ /^snd-/;
+ add_alias('sound-slot-0', $name) if $category =~ /sound/;
+ add_alias('ieee1394-controller', $name) if member($name, 'ohci1394');
add_probeall('usb-interface', $name) if $name =~ /usb-[uo]hci/ || $name eq 'ehci-hcd';
+
$conf{$name}{options} = join " ", @options if @options;
}