[oe-commits] [openembedded-core] 50/62: goarch.bbclass: Replace logic for setting GOARM

git at git.openembedded.org git at git.openembedded.org
Mon Sep 11 16:17:23 UTC 2017


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 064a2e60903286b37854524eca18364eb8be84d5
Author: Will Newton <will.newton at gmail.com>
AuthorDate: Fri Sep 8 18:04:34 2017 -0300

    goarch.bbclass: Replace logic for setting GOARM
    
    The previous logic applied a regex to TUNE_FEATURES which could
    set the GOARM value to 7 incorrectly, for example when dealing
    with an arm1176 core. Simplify to check for the presence of
    "armv7" instead. At the same time add a check for "armv6" and
    set GOARM to 6 in that case.
    
    Signed-off-by: Will Newton <willn at resin.io>
    Signed-off-by: Otavio Salvador <otavio at ossystems.com.br>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/classes/goarch.bbclass | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/meta/classes/goarch.bbclass b/meta/classes/goarch.bbclass
index 7960ac5..0f0d8b6 100644
--- a/meta/classes/goarch.bbclass
+++ b/meta/classes/goarch.bbclass
@@ -45,8 +45,11 @@ def go_map_arch(a, d):
 
 def go_map_arm(a, f, d):
     import re
-    if re.match('arm.*', a) and re.match('arm.*7.*', f):
-        return '7'
+    if re.match('arm.*', a):
+        if 'armv7' in f:
+            return '7'
+        elif 'armv6' in f:
+            return '6'
     return ''
 
 def go_map_os(o, d):

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


More information about the Openembedded-commits mailing list