[oe-commits] [openembedded-core] 03/05: meson.bbclass: Handle microblaze* mapping to cpu family

git at git.openembedded.org git at git.openembedded.org
Thu Sep 19 19:31:04 UTC 2019


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

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

commit 01692856b8294109ac553c5c0cc23dbb5f1a8970
Author: Nathan Rossi <nathan at nathanrossi.com>
AuthorDate: Thu Sep 19 12:30:01 2019 +0000

    meson.bbclass: Handle microblaze* mapping to cpu family
    
    Signed-off-by: Nathan Rossi <nathan at nathanrossi.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/classes/meson.bbclass | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/meta/classes/meson.bbclass b/meta/classes/meson.bbclass
index 48ca112..efa6234 100644
--- a/meta/classes/meson.bbclass
+++ b/meta/classes/meson.bbclass
@@ -55,6 +55,8 @@ def meson_cpu_family(var, d):
         return 'mips64'
     elif re.match(r"i[3-6]86", arch):
         return "x86"
+    elif arch == "microblazeel" or arch == "microblazeeb":
+        return "microblaze"
     else:
         return arch
 

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


More information about the Openembedded-commits mailing list