[OE-core] [PATCH 1/2] kernel.bbclass: do_sizecheck: update path to build image

michel.thebeau at windriver.com michel.thebeau at windriver.com
Wed Mar 20 15:30:36 UTC 2013


From: Michel Thebeau <michel.thebeau at windriver.com>

KERNEL_OUTPUT is a path relative to ${B}, and resolves to a soft
link to ${B}/${KERNEL_IMAGETYPE}.  When do_sizecheck runs it
does not find the file, and does not fail.

So check the size of ${B}/${KERNEL_IMAGETYPE}.

Alternative approaches to resolve this could be:
 - check ${B}/${KERNEL_OUTPUT}, with ls -L to resolve the link
 - check ${B}/${KERNEL_OUTPUT}.bin

This is related to, but does not resolve:
[YOCTO #3514]

Signed-off-by: Michel Thebeau <michel.thebeau at windriver.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield at windriver.com>
---
 meta/classes/kernel.bbclass |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta/classes/kernel.bbclass b/meta/classes/kernel.bbclass
index d57d1f5..dbb571a 100644
--- a/meta/classes/kernel.bbclass
+++ b/meta/classes/kernel.bbclass
@@ -293,9 +293,9 @@ python split_kernel_packages () {
 # with a fixed length or there is a limit in transferring the kernel to memory
 do_sizecheck() {
 	if [ ! -z "${KERNEL_IMAGE_MAXSIZE}" ]; then
-		size=`ls -l ${KERNEL_OUTPUT} | awk '{ print $5}'`
+		size=`ls -l ${B}/${KERNEL_IMAGETYPE} | awk '{ print $5}'`
 		if [ $size -ge ${KERNEL_IMAGE_MAXSIZE} ]; then
-			rm ${KERNEL_OUTPUT}
+			rm ${B}/${KERNEL_IMAGETYPE}
 			die "This kernel (size=$size > ${KERNEL_IMAGE_MAXSIZE}) is too big for your device. Please reduce the size of the kernel by making more of it modular."
 		fi
 	fi
-- 
1.7.9.7





More information about the Openembedded-core mailing list