[oe-commits] [openembedded-core] 07/07: kernel.bbclass: Fix incorrect deploying of fitimage.initramfs

git at git.openembedded.org git at git.openembedded.org
Thu Jan 3 22:38:20 UTC 2019


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit 17ce92c91fa63e1b10d2d4b207377fc3a7a39ca0
Author: Manjukumar Matha <manjukumar.harthikote-matha at xilinx.com>
AuthorDate: Thu Jan 3 08:53:22 2019 -0800

    kernel.bbclass: Fix incorrect deploying of fitimage.initramfs
    
    When kernel-fitimage and initramfs is enabled using
    INITRAMFS_IMAGE_BUNDLE = "1", kernel do_deploy tries to deploy
    fitImage.initramfs with following error
    
    | install: cannot stat 'arch/arm64/boot/fitImage.initramfs': No such
    file or directory
    
    Skip deploying fitimage.initramfs, since fitimage does not
    create fitimage.initramfs
    
    Signed-off-by: Manjukumar Matha <manjukumar.harthikote-matha at xilinx.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/classes/kernel.bbclass | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/meta/classes/kernel.bbclass b/meta/classes/kernel.bbclass
index 2e4ed8d..45cb4fa 100644
--- a/meta/classes/kernel.bbclass
+++ b/meta/classes/kernel.bbclass
@@ -682,6 +682,9 @@ kernel_do_deploy() {
 
 	if [ ! -z "${INITRAMFS_IMAGE}" -a x"${INITRAMFS_IMAGE_BUNDLE}" = x1 ]; then
 		for imageType in ${KERNEL_IMAGETYPES} ; do
+			if [ "$imageType" = "fitImage" ] ; then
+				continue
+			fi
 			initramfs_base_name=${imageType}-${INITRAMFS_NAME}
 			initramfs_symlink_name=${imageType}-${INITRAMFS_LINK_NAME}
 			install -m 0644 ${KERNEL_OUTPUT_DIR}/${imageType}.initramfs $deployDir/${initramfs_base_name}.bin

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list