diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2005-02-10 14:22:02 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2005-02-10 14:22:02 +0000 |
commit | 96fad6109b0120be1664e89a726406c5b3d11d97 (patch) | |
tree | a1afc0e2d8d821d5e20c98d59d82690194a3e453 /perl-install | |
parent | b89a33e1518b7669018af091e7b3e9ecd064f493 (diff) | |
download | drakx-96fad6109b0120be1664e89a726406c5b3d11d97.tar drakx-96fad6109b0120be1664e89a726406c5b3d11d97.tar.gz drakx-96fad6109b0120be1664e89a726406c5b3d11d97.tar.bz2 drakx-96fad6109b0120be1664e89a726406c5b3d11d97.tar.xz drakx-96fad6109b0120be1664e89a726406c5b3d11d97.zip |
(write_preload_conf) typo fix
Diffstat (limited to 'perl-install')
-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 fb3aaf3a4..d10273c62 100644 --- a/perl-install/modules.pm +++ b/perl-install/modules.pm @@ -178,7 +178,7 @@ sub write_preload_conf { my ($conf) = @_; my @l; push @l, 'scsi_hostadapter' if $conf->get_probeall('scsi_hostadapter'); - push @l, intersection([ list_modules::category2modules('multimedia/dvb'), list_modules::category2modules('multimedia/tv') ]), + push @l, intersection([ list_modules::category2modules('multimedia/dvb'), list_modules::category2modules('multimedia/tv') ], [ map { $_->{driver} } detect_devices::probeall() ]); push @l, 'nvram' if cat_('/proc/bus/input/devices') =~ m!^N: Name="SynPS/2 Synaptics TouchPad"$!m; push @l, map { $_->{driver} } probe_category('various/laptop'); |