diff options
author | Bruce Ashfield <bruce.ashfield@gmail.com> | 2023-04-14 15:29:19 -0400 |
---|---|---|
committer | Steve Sakoman <steve@sakoman.com> | 2023-05-10 04:16:51 -1000 |
commit | d14a46aef2af1e3de888cac76180c428a6ef6ff5 (patch) | |
tree | 691cad3f4723d18a9cc2efd326dc10a04caf366e | |
parent | 40355fd859e7fd0a584b4b50fe9f9aef7f81ef2a (diff) | |
download | poky-d14a46aef2af1e3de888cac76180c428a6ef6ff5.tar.gz |
kernel: improve initramfs bundle processing time
This is a partial fix for bugzilla 15059 [https://bugzilla.yoctoproject.org/show_bug.cgi?id=15059]
It has been noted by several people that when an initramfs is bundled:
- a lot of the kernel is rebuilt
- it takes a really long time
When looking at the logs, the second kernel compilation (that performs
the bundle) is not using the parallel make settings, and builds with
-j1.
We are already explicitly passing PARALLEL_MAKE when building kernel
modules, and by extending that explicit use to the main kernel
compilation, we ensure that we always get a parallel build.
Build times chnaged from more than 30 minutes for the bundle, to
3 minutes in local testing.
The question of whether or not too much is rebuilding during the
bundle step is still an open question, but with this tweak, at least
the build time is back in the realm of acceptable.
(From OE-Core rev: 126cbad716377f024dae5cc8e2faee9bd661f5c5)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
(cherry picked from commit 88fd394ecf0f2174b792075d409d87046896426b)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
-rw-r--r-- | meta/classes-recipe/kernel.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes-recipe/kernel.bbclass b/meta/classes-recipe/kernel.bbclass index aefa0d21bc..e634eabd49 100644 --- a/meta/classes-recipe/kernel.bbclass +++ b/meta/classes-recipe/kernel.bbclass | |||
@@ -382,7 +382,7 @@ kernel_do_compile() { | |||
382 | use_alternate_initrd=CONFIG_INITRAMFS_SOURCE=${B}/usr/${INITRAMFS_IMAGE_NAME}.cpio | 382 | use_alternate_initrd=CONFIG_INITRAMFS_SOURCE=${B}/usr/${INITRAMFS_IMAGE_NAME}.cpio |
383 | fi | 383 | fi |
384 | for typeformake in ${KERNEL_IMAGETYPE_FOR_MAKE} ; do | 384 | for typeformake in ${KERNEL_IMAGETYPE_FOR_MAKE} ; do |
385 | oe_runmake ${typeformake} ${KERNEL_EXTRA_ARGS} $use_alternate_initrd | 385 | oe_runmake ${PARALLEL_MAKE} ${typeformake} ${KERNEL_EXTRA_ARGS} $use_alternate_initrd |
386 | done | 386 | done |
387 | } | 387 | } |
388 | 388 | ||