[oe-commits] [openembedded-core] 11/26: meta: classes: Add building dir to uImage creation

git at git.openembedded.org git at git.openembedded.org
Wed Apr 12 23:01:27 UTC 2017


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 e5a6ee0d0655827d06a6030380277ee61a6db0ef
Author: Mylène Josserand <mylene.josserand at free-electrons.com>
AuthorDate: Wed Apr 12 22:03:08 2017 +0200

    meta: classes: Add building dir to uImage creation
    
    On the do_uboot_mkimage task from kernel-uimage.bbclass, in case
    KEEPUIMAGE is different than the default "yes" value, the uboot-mkimage
    command fails because the path of the created uImage does not exist.
    
    On this task, we are under the BUILDDIR so there is no folder arch/<ARCH>/boot.
    Add the ${B} (for kernel build directory) as prefix to this folder fixes the problem.
    
    Signed-off-by: Mylène Josserand <mylene.josserand at free-electrons.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/classes/kernel-uimage.bbclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/classes/kernel-uimage.bbclass b/meta/classes/kernel-uimage.bbclass
index e2e9b63..19c6ade 100644
--- a/meta/classes/kernel-uimage.bbclass
+++ b/meta/classes/kernel-uimage.bbclass
@@ -28,7 +28,7 @@ do_uboot_mkimage() {
 					awk '$3=="${UBOOT_ENTRYSYMBOL}" {print $1}'`
 			fi
 
-			uboot-mkimage -A ${UBOOT_ARCH} -O linux -T kernel -C "${linux_comp}" -a ${UBOOT_LOADADDRESS} -e $ENTRYPOINT -n "${DISTRO_NAME}/${PV}/${MACHINE}" -d linux.bin arch/${ARCH}/boot/uImage
+			uboot-mkimage -A ${UBOOT_ARCH} -O linux -T kernel -C "${linux_comp}" -a ${UBOOT_LOADADDRESS} -e $ENTRYPOINT -n "${DISTRO_NAME}/${PV}/${MACHINE}" -d linux.bin ${B}/arch/${ARCH}/boot/uImage
 			rm -f linux.bin
 		fi
 	fi

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


More information about the Openembedded-commits mailing list