[oe-commits] [openembedded-core] 03/13: kernel-fitimage.bbclass: Fix bad image type replacement for microblaze

git at git.openembedded.org git at git.openembedded.org
Wed Jan 3 17:58:26 UTC 2018


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

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

commit a9e6ba5b38aa29c32a832fa00f1f2c59c368098a
Author: Manjukumar Matha <manjukumar.harthikote-matha at xilinx.com>
AuthorDate: Tue Jan 2 16:45:04 2018 -0800

    kernel-fitimage.bbclass: Fix bad image type replacement for microblaze
    
    When using kernel-fitimage class with microblaze, the image type has to be
    linux.bin not zImage. This patch fixes the bad image type replacement
    for microblaze
    
    Signed-off-by: Manjukumar Matha <manjukumar.harthikote-matha at xilinx.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/classes/kernel-fitimage.bbclass | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/meta/classes/kernel-fitimage.bbclass b/meta/classes/kernel-fitimage.bbclass
index 9baf399..a50f8a1 100644
--- a/meta/classes/kernel-fitimage.bbclass
+++ b/meta/classes/kernel-fitimage.bbclass
@@ -14,6 +14,8 @@ python __anonymous () {
             replacementtype = "vmlinuz.bin"
         elif uarch == "x86":
             replacementtype = "bzImage"
+        elif uarch == "microblaze":
+            replacementtype = "linux.bin"
         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