summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRaju Kumar Pothuraju <raju.kumar-pothuraju@xilinx.com>2022-06-22 16:37:34 +0530
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-07-08 08:27:16 +0100
commit9ef7d8daad18473189eefb521cb211b74b28c349 (patch)
treebda7700a54eb6a88b3a39b29f80ec0adc28c0b18
parenta6987c6eb1bbf0f032ba0a686e714a1504c9a506 (diff)
downloadpoky-9ef7d8daad18473189eefb521cb211b74b28c349.tar.gz
kernel-uboot.bbclass: Use vmlinux.initramfs when INITRAMFS_IMAGE_BUNDLE set
vmlinux file doesnot have the initramfs image when INITRAMFS_IMAGE_BUNDLE was set. Use vmlinux.initramfs in uboot_prep_kimage when INITRAMFS_IMAGE_BUNDLE set based on the implementation in kernel.bbclass do_bundle_initramfs function, https://github.com/openembedded/openembedded-core/blob/master/meta/classes/kernel.bbclass#L316-L317 to be able to use proper linux.bin file in creation of fitImage. (From OE-Core rev: 3f8a49c4f276c65ccec149e3dc2e06d74c3c5a80) Signed-off-by: Raju Kumar Pothuraju <raju.kumar-pothuraju@xilinx.com> Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com> (cherry picked from commit e0a4e45e067d9fdb67a7d223aea463f259469035) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/classes/kernel-uboot.bbclass6
1 files changed, 6 insertions, 0 deletions
diff --git a/meta/classes/kernel-uboot.bbclass b/meta/classes/kernel-uboot.bbclass
index 2daa068298..2facade818 100644
--- a/meta/classes/kernel-uboot.bbclass
+++ b/meta/classes/kernel-uboot.bbclass
@@ -15,6 +15,12 @@ uboot_prep_kimage() {
15 linux_comp="none" 15 linux_comp="none"
16 else 16 else
17 vmlinux_path="vmlinux" 17 vmlinux_path="vmlinux"
18 # Use vmlinux.initramfs for linux.bin when INITRAMFS_IMAGE_BUNDLE set
19 # As per the implementation in kernel.bbclass.
20 # See do_bundle_initramfs function
21 if [ "${INITRAMFS_IMAGE_BUNDLE}" = "1" ] && [ -e vmlinux.initramfs ]; then
22 vmlinux_path="vmlinux.initramfs"
23 fi
18 linux_suffix="${FIT_KERNEL_COMP_ALG_EXTENSION}" 24 linux_suffix="${FIT_KERNEL_COMP_ALG_EXTENSION}"
19 linux_comp="${FIT_KERNEL_COMP_ALG}" 25 linux_comp="${FIT_KERNEL_COMP_ALG}"
20 fi 26 fi