diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-07-11 14:27:50 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-07-11 14:27:50 +0000 |
commit | 7b4651896ee17d5f5dda786a8672ff9188d7cf38 (patch) | |
tree | da585caa7160b94cec2747bc6f191f2b07085640 /perl-install/install_any.pm | |
parent | 0cadba080a3485bf36d673d8259d2ef6a995684a (diff) | |
download | drakx-backup-do-not-use-7b4651896ee17d5f5dda786a8672ff9188d7cf38.tar drakx-backup-do-not-use-7b4651896ee17d5f5dda786a8672ff9188d7cf38.tar.gz drakx-backup-do-not-use-7b4651896ee17d5f5dda786a8672ff9188d7cf38.tar.bz2 drakx-backup-do-not-use-7b4651896ee17d5f5dda786a8672ff9188d7cf38.tar.xz drakx-backup-do-not-use-7b4651896ee17d5f5dda786a8672ff9188d7cf38.zip |
use get_probeall instead of get_alias for usb-interface
Diffstat (limited to 'perl-install/install_any.pm')
-rw-r--r-- | perl-install/install_any.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_any.pm b/perl-install/install_any.pm index 4e5bff38b..30beca8b2 100644 --- a/perl-install/install_any.pm +++ b/perl-install/install_any.pm @@ -363,7 +363,7 @@ sub setDefaultPackages { $o->{compssUsersChoice}{DOCS} = !$o->{excludedocs}; $o->{compssUsersChoice}{BURNER} = 1 if detect_devices::burners(); $o->{compssUsersChoice}{DVD} = 1 if detect_devices::dvdroms(); - $o->{compssUsersChoice}{USB} = 1 if modules::get_alias("usb-interface"); + $o->{compssUsersChoice}{USB} = 1 if modules::get_probeall("usb-interface"); $o->{compssUsersChoice}{PCMCIA} = 1 if detect_devices::hasPCMCIA(); $o->{compssUsersChoice}{HIGH_SECURITY} = 1 if $o->{security} > 3; $o->{compssUsersChoice}{BIGMEM} = 1 if !$::oem && (availableRamMB() > 800) && (arch() !~ /ia64/); |