Re: [OE-core] [PATCH v2] kernel.bbclass: Handle possible multiconfig.

2025-02-19 Thread Mueller, Daniel via lists.openembedded.org
From: Sebastian Zenker When specifying the dependencies of do_bundle_initramfs the current multiconfig might not be the default. This fixes the dependencies between the multiconfigs if the current differs to default. Signed-off-by: Mueller, Daniel --- Your right, handling 'default' isn't required

[OE-core] [PATCH v2] kernel.bbclass: Handle possible multiconfig.

2025-02-18 Thread Mueller, Daniel via lists.openembedded.org
From: Sebastian Zenker When specifying the dependencies of do_bundle_initramfs the current multiconfig might not be the default. This fixes the dependencies between the multiconfigs if the current differs to default. Signed-off-by: Mueller, Daniel --- Your right, handling 'default' isn't requir

[OE-core] [PATCH 2/3] kernel-fitImage.bbclass: Handle possible multiconfig.

2025-02-06 Thread Mueller, Daniel via lists.openembedded.org
From: "Weisser, Pascal" When specifying the dependencies of do_assemble_fitimage_initramfs the initramfs image might be built with another multiconfig. This needs to be handled. The path of the initramfs image also needs to be adapted to handle the case when it's built with another multiconfig.

[OE-core] [PATCH 1/3] kernel.bbclass: Handle possible multiconfig.

2025-02-06 Thread Mueller, Daniel via lists.openembedded.org
From: Sebastian Zenker When specifying the dependencies of do_bundle_initramfs the current multiconfig might not be the default. This fixes the dependencies between the multiconfigs if the current differs to default. Signed-off-by: Mueller, Daniel --- meta/classes-recipe/kernel.bbclass | 5 +++

[OE-core] [PATCH 3/3] kernel-fitImage.bbclass: Remove dependeny on initramfs image when bundled.

2025-02-06 Thread Mueller, Daniel via lists.openembedded.org
From: "Weisser, Pascal" In case the initramfs image is bundled into the kernel there's no need to specify a dependeny on the do_image_complete task of the initramfs image from the do_assemble_fitimage_initramfs task since the task won't access the image. Signed-off-by: Mueller, Daniel --- meta

[OE-core] [PATCH 0/3] Fix incorrect dependencies between multiconfigs

2025-02-06 Thread Mueller, Daniel via lists.openembedded.org
This branch fixes some incorrect initramfs dependency handling between multiconfigs in case the current multiconfig isn't the default. It also removes the dependency between fitImage and initramfs in case the initramfs is already bundled within the kernel. Sebastian Zenker (1): kernel.bbclass: