summaryrefslogtreecommitdiffstats
path: root/perl-install/install
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mageia.org>2012-10-05 16:39:16 +0000
committerThierry Vignaud <tv@mageia.org>2012-10-05 16:39:16 +0000
commite7f5c8ac46701449630b2a4d145d305ea4fc63be (patch)
tree178eb1de3bf6e6a78ff574e56d725c4c8138a06f /perl-install/install
parent88e9ba69781561efc39bd5c663928651cf4641af (diff)
downloaddrakx-backup-do-not-use-e7f5c8ac46701449630b2a4d145d305ea4fc63be.tar
drakx-backup-do-not-use-e7f5c8ac46701449630b2a4d145d305ea4fc63be.tar.gz
drakx-backup-do-not-use-e7f5c8ac46701449630b2a4d145d305ea4fc63be.tar.bz2
drakx-backup-do-not-use-e7f5c8ac46701449630b2a4d145d305ea4fc63be.tar.xz
drakx-backup-do-not-use-e7f5c8ac46701449630b2a4d145d305ea4fc63be.zip
(main,hasCPUMicrocode) load 'microcode' asynchronously
thus preventing big wait when not supported (mga#7671)
Diffstat (limited to 'perl-install/install')
-rw-r--r--perl-install/install/NEWS3
-rw-r--r--perl-install/install/install2.pm2
2 files changed, 5 insertions, 0 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS
index 39d22cf2d..27e906a0c 100644
--- a/perl-install/install/NEWS
+++ b/perl-install/install/NEWS
@@ -1,3 +1,6 @@
+- load 'microcode' asynchronously, preventing big wait when not supported
+ (mga#7671)
+
Version 14.46.2 - 3 October 2012
- adapt to latest dash-static
diff --git a/perl-install/install/install2.pm b/perl-install/install/install2.pm
index 24d99cb03..6717a089e 100644
--- a/perl-install/install/install2.pm
+++ b/perl-install/install/install2.pm
@@ -613,6 +613,8 @@ sub main {
init_local_install($o);
} else {
start_udev();
+ # load some modules early but asynchronously:
+ run_program::raw({ detach => 1 }, 'modprobe', 'microcode');
}
$o->{prefix} = $::prefix = $::testing ? "/tmp/test-perl-install" : "/mnt";