]> code.ossystems Code Review - openembedded-core.git/commitdiff
goarch.bbclass: Replace logic for setting GOARM
authorWill Newton <will.newton@gmail.com>
Fri, 8 Sep 2017 08:52:23 +0000 (09:52 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 24 Oct 2017 13:54:48 +0000 (14:54 +0100)
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@resin.io>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/classes/goarch.bbclass

index 4a5b2ec787b9c9b74c6b190f9c84cc4be3e1b418..12df88f8c4f4822983f48fa6c317859bf4c7b979 100644 (file)
@@ -38,8 +38,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):