[oe-commits] [openembedded-core] 52/62: kernel-fitimage: Fix bad image type replacement for aarch64

git at git.openembedded.org git at git.openembedded.org
Sat Jan 6 10:15:27 UTC 2018


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch rocko
in repository openembedded-core.

commit 88f2f2364b615e2510b4378f3cffa5f8df282da6
Author: Thomas Perrot <thomas.perrot at tupi.fr>
AuthorDate: Wed Dec 13 10:26:38 2017 -0800

    kernel-fitimage: Fix bad image type replacement for aarch64
    
    When using kernel-fitimage class with aarch64, the image type has to be
    Image not zImage.  This patch fixes the bad image type replacement for
    aarch64
    
    Signed-off-by: Thomas Perrot <thomas.perrot at tupi.fr>
    Signed-off-by: Manjukumar Matha <manjukumar.harthikote-matha at xilinx.com>
    Signed-off-by: Ross Burton <ross.burton at intel.com>
    (cherry picked from commit d14adead5861007ac7e95c32396491f907ab9f8f)
    Signed-off-by: Armin Kuster <akuster808 at gmail.com>
---
 meta/classes/kernel-fitimage.bbclass | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/meta/classes/kernel-fitimage.bbclass b/meta/classes/kernel-fitimage.bbclass
index 179185b..9baf399 100644
--- a/meta/classes/kernel-fitimage.bbclass
+++ b/meta/classes/kernel-fitimage.bbclass
@@ -7,9 +7,12 @@ python __anonymous () {
         depends = "%s u-boot-mkimage-native dtc-native" % depends
         d.setVar("DEPENDS", depends)
 
-        if d.getVar("UBOOT_ARCH") == "mips":
+        uarch = d.getVar("UBOOT_ARCH")
+        if uarch == "arm64":
+            replacementtype = "Image"
+        elif uarch == "mips":
             replacementtype = "vmlinuz.bin"
-        elif d.getVar("UBOOT_ARCH") == "x86":
+        elif uarch == "x86":
             replacementtype = "bzImage"
         else:
             replacementtype = "zImage"

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


More information about the Openembedded-commits mailing list