[oe-commits] [openembedded-core] 02/23: meson.bbclass: Make meson support aarch64_be.

git at git.openembedded.org git at git.openembedded.org
Sat May 25 20:17:20 UTC 2019


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 bf0943179286a4efd3a65022ccab48495d723581
Author: Lei Maohui <leimaohui at cn.fujitsu.com>
AuthorDate: Wed May 22 15:17:44 2019 +0800

    meson.bbclass: Make meson support aarch64_be.
    
    Added aarch64_be into cpu family.
    
    Signed-off-by: Lei Maohui <leimaohui at cn.fujitsu.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 115d1ae..0edbfc1 100644
--- a/meta/classes/meson.bbclass
+++ b/meta/classes/meson.bbclass
@@ -56,6 +56,8 @@ def meson_cpu_family(var, d):
         return 'ppc64'
     elif arch == 'armeb':
         return 'arm'
+    elif arch == 'aarch64_be':
+        return 'aarch64'
     elif arch == 'mipsel':
         return 'mips'
     elif arch == 'mips64el':

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


More information about the Openembedded-commits mailing list