diff options
author | Thierry Vignaud <tv@mageia.org> | 2012-10-05 16:39:16 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2012-10-05 16:39:16 +0000 |
commit | b44aa967c224f71abce9cba7db6a899c097cc572 (patch) | |
tree | 178eb1de3bf6e6a78ff574e56d725c4c8138a06f /perl-install/install/install2.pm | |
parent | 8e7a932ca210c00801c9466791ca3882a5d10d51 (diff) | |
download | drakx-b44aa967c224f71abce9cba7db6a899c097cc572.tar drakx-b44aa967c224f71abce9cba7db6a899c097cc572.tar.gz drakx-b44aa967c224f71abce9cba7db6a899c097cc572.tar.bz2 drakx-b44aa967c224f71abce9cba7db6a899c097cc572.tar.xz drakx-b44aa967c224f71abce9cba7db6a899c097cc572.zip |
(main,hasCPUMicrocode) load 'microcode' asynchronously
thus preventing big wait when not supported (mga#7671)
Diffstat (limited to 'perl-install/install/install2.pm')
-rw-r--r-- | perl-install/install/install2.pm | 2 |
1 files changed, 2 insertions, 0 deletions
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"; |