diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-08-20 01:06:22 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-08-20 01:06:22 +0000 |
commit | b3dabf3d3b06cba33edfd9d8bd418d7d36614086 (patch) | |
tree | 6ed14918fce230de0e728eec2c301797dff014ca /perl-install/modules.pm | |
parent | 2c43cf115f517fc50c13386258317f8678d54023 (diff) | |
download | drakx-b3dabf3d3b06cba33edfd9d8bd418d7d36614086.tar drakx-b3dabf3d3b06cba33edfd9d8bd418d7d36614086.tar.gz drakx-b3dabf3d3b06cba33edfd9d8bd418d7d36614086.tar.bz2 drakx-b3dabf3d3b06cba33edfd9d8bd418d7d36614086.tar.xz drakx-b3dabf3d3b06cba33edfd9d8bd418d7d36614086.zip |
load detected firewire modules during install
Diffstat (limited to 'perl-install/modules.pm')
-rw-r--r-- | perl-install/modules.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/modules.pm b/perl-install/modules.pm index 01b6b9c1a..f9db94709 100644 --- a/perl-install/modules.pm +++ b/perl-install/modules.pm @@ -363,7 +363,7 @@ sub when_load { $conf{$name}{options} = join " ", @options if @options; if (my $category = module2category($name)) { - if ($category =~ m,disk/(scsi|hardware_raid|usb),) { + if ($category =~ m,disk/(scsi|hardware_raid|usb|firewire),) { add_probeall('scsi_hostadapter', $name); eval { load('sd_mod') }; } |