From be15c2fefdce00bc530739d3979a20ed6725041b Mon Sep 17 00:00:00 2001 From: Vineeth Chowdary Karumanchi Date: Thu, 8 Feb 2018 11:59:36 +0530 Subject: kernel-fitimage.bbclass: Fix 64 bit ENTRYPOINT 64 bit entry point should be passed in 2 literals ( "0x1 0x00008000" ).ENTRYPOINT is assigned with first half only and erroring out as 'command not found' for the second half. Adding quotes while assignment fixes the issue. (From OE-Core rev: e886c9c5e1a8ab28388a2e8bbb936ad5eea78615) Signed-off-by: Vineeth Chowdary Karumanchi Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- meta/classes/kernel-fitimage.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta') diff --git a/meta/classes/kernel-fitimage.bbclass b/meta/classes/kernel-fitimage.bbclass index a50f8a18ee..50a91e1990 100644 --- a/meta/classes/kernel-fitimage.bbclass +++ b/meta/classes/kernel-fitimage.bbclass @@ -102,7 +102,7 @@ fitimage_emit_section_kernel() { kernel_csum="sha1" - ENTRYPOINT=${UBOOT_ENTRYPOINT} + ENTRYPOINT="${UBOOT_ENTRYPOINT}" if [ -n "${UBOOT_ENTRYSYMBOL}" ]; then ENTRYPOINT=`${HOST_PREFIX}nm vmlinux | \ awk '$3=="${UBOOT_ENTRYSYMBOL}" {print "0x"$1;exit}'` -- cgit v1.2.3-54-g00ecf