From: Quentin Schulz Date: Mon, 20 Jul 2026 13:22:31 +0000 (+0200) Subject: kernel.bbclass: pass args instead of tuple of args to runstrip() X-Git-Tag: yocto-6.1_M2~3 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=41a491a66109eb480bdb47f241664fbb268c0f90;p=thirdparty%2Fopenembedded%2Fopenembedded-core.git kernel.bbclass: pass args instead of tuple of args to runstrip() Since commit 7c99f90079e7 ("lib/package/utils: Improve multiprocess_launch argument passing"), runstrip() now expects arguments individually instead as a big tuple so let's fix the one user in OE-Core of that function which we forgot to migrate. Fixes: 7c99f90079e7 ("lib/package/utils: Improve multiprocess_launch argument passing") Reported-by: Robert P. J. Day Closes: https://lore.kernel.org/openembedded-core/319bb00c-9712-4aa7-38b0-e1ad2bab840b@crashcourse.ca/ Signed-off-by: Quentin Schulz Signed-off-by: Mathieu Dubois-Briand Signed-off-by: Richard Purdie --- diff --git a/meta/classes-recipe/kernel.bbclass b/meta/classes-recipe/kernel.bbclass index 48e394b650..91248467be 100644 --- a/meta/classes-recipe/kernel.bbclass +++ b/meta/classes-recipe/kernel.bbclass @@ -750,7 +750,7 @@ python do_strip() { if (extra_sections and kernel_image.find(d.getVar('KERNEL_IMAGEDEST') + '/vmlinux') != -1): kernel_image_stripped = kernel_image + ".stripped" shutil.copy2(kernel_image, kernel_image_stripped) - oe.package.runstrip((kernel_image_stripped, 8, strip, extra_sections)) + oe.package.runstrip(kernel_image_stripped, 8, strip, extra_sections) bb.debug(1, "KERNEL_IMAGE_STRIP_EXTRA_SECTIONS is set, stripping sections: " + \ extra_sections) }