diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-03-29 15:30:23 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-03-29 15:30:23 +0000 |
commit | d0cf48bf5c629d174a78b68ccd185e149ecf2194 (patch) | |
tree | da207d6adf27dcacf0c893198fec52126ad1c56e /perl-install/harddrake | |
parent | f98aa98498cd9560387c9d7426f5d82f29b2786d (diff) | |
download | drakx-d0cf48bf5c629d174a78b68ccd185e149ecf2194.tar drakx-d0cf48bf5c629d174a78b68ccd185e149ecf2194.tar.gz drakx-d0cf48bf5c629d174a78b68ccd185e149ecf2194.tar.bz2 drakx-d0cf48bf5c629d174a78b68ccd185e149ecf2194.tar.xz drakx-d0cf48bf5c629d174a78b68ccd185e149ecf2194.zip |
- disable imm/ppa probe during install since it causes some rubbish to be printed (bugzilla #12560)
- add an option in harddrake to probe imm/ppa
Diffstat (limited to 'perl-install/harddrake')
-rw-r--r-- | perl-install/harddrake/data.pm | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/perl-install/harddrake/data.pm b/perl-install/harddrake/data.pm index 7a3060908..c03550acb 100644 --- a/perl-install/harddrake/data.pm +++ b/perl-install/harddrake/data.pm @@ -71,7 +71,13 @@ our @tree = string => N("Zip"), icon => "floppy.png", configurator => "", - detector => \&detect_devices::zips, + detector => sub { + my ($options) = @_; + if ($options->{PARALLEL_ZIP_DETECTION}) { + modules::load_parallel_zip($modules_conf) and $modules_conf->write; + } + detect_devices::zips(); + }, checked_on_boot => 1, automatic => 1, }, |