From 21850250aa29e48bfeb3b65efee65193ea0a8e8b Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Tue, 20 Aug 2002 11:37:48 +0000 Subject: add firewire controller configuration --- perl-install/install_steps.pm | 1 + perl-install/install_steps_interactive.pm | 2 ++ perl-install/modules.pm | 4 +++- 3 files changed, 6 insertions(+), 1 deletion(-) (limited to 'perl-install') diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index e6d2991fc..8ed192198 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -129,6 +129,7 @@ sub setupSCSI { my ($o) = @_; modules::configure_pcmcia($o->{pcmcia}) if $o->{pcmcia}; modules::load_ide(); + modules::load_category('bus/firewire'); modules::load_category('disk/scsi|hardware_raid'); } diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index 35000ad15..d806b22f1 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -321,6 +321,8 @@ sub setupSCSI { my $w = $o->wait_message(_("IDE"), _("Configuring IDE")); modules::load(modules::category2modules('disk/cdrom')); } + any::load_category($o, 'bus/firewire'); + any::load_category($o, 'disk/scsi|hardware_raid', !$::expert && !$clicked, 0, $o->{pcmcia}); install_interactive::tellAboutProprietaryModules($o) if !$clicked; 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; } -- cgit v1.2.1