From d0cf48bf5c629d174a78b68ccd185e149ecf2194 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Tue, 29 Mar 2005 15:30:23 +0000 Subject: - 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 --- perl-install/harddrake/data.pm | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'perl-install/harddrake') 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, }, -- cgit v1.2.1