Add support to install kernel image for aarch64

Signed-off-by: Naresh Bhat <[email protected]>
Signed-off-by: Matt Fleming <[email protected]>
---
 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

-- 
_______________________________________________
Openembedded-core mailing list
[email protected]
http://lists.openembedded.org/mailman/listinfo/openembedded-core

Reply via email to