[OE-core] [OE-core Yocto PATCH 2/4] bootimg: Add support to install Image

Naresh Bhat naresh.bhat at linaro.org
Tue Mar 3 15:46:22 UTC 2015


Add support to install kernel image for aarch64

Signed-off-by: Naresh Bhat <naresh.bhat at linaro.org>
Signed-off-by: Matt Fleming <matt.fleming at intel.com>
---
 meta/classes/bootimg.bbclass |   10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/meta/classes/bootimg.bbclass b/meta/classes/bootimg.bbclass
index b1c03ba..a8e0c19 100644
--- a/meta/classes/bootimg.bbclass
+++ b/meta/classes/bootimg.bbclass
@@ -66,8 +66,16 @@ populate() {
 	DEST=$1
 	install -d ${DEST}
 
+	SRC_KERNEL_IMAGE=bzImage
+	DEST_KERNEL_IMAGE=vmlinuz
+
+	if [ "${TARGET_ARCH}" = "aarch64" ]; then
+		SRC_KERNEL_IMAGE=Image
+		DEST_KERNEL_IMAGE=Image
+	fi
+
 	# Install bzImage, initrd, and rootfs.img in DEST for all loaders to use.
-	install -m 0644 ${DEPLOY_DIR_IMAGE}/bzImage ${DEST}/vmlinuz
+	install -m 0644 ${STAGING_KERNEL_DIR}/${SRC_KERNEL_IMAGE} ${DEST}/${DEST_KERNEL_IMAGE}
 	
 	# initrd is made of concatenation of multiple filesystem images
 	if [ -n "${INITRD}" ]; then
-- 
1.7.9.5




More information about the Openembedded-core mailing list