[oe-commits] [openembedded-core] 48/59: goarch.bbclass: Add support for ARMv5

git at git.openembedded.org git at git.openembedded.org
Mon Sep 11 16:31:39 UTC 2017


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

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

commit e242e7c3617ded87582c5d384b15027498b0c1a4
Author: Otavio Salvador <otavio at ossystems.com.br>
AuthorDate: Fri Sep 8 18:04:35 2017 -0300

    goarch.bbclass: Add support for ARMv5
    
    This adds support to return the proper ARMv5 format.
    
    This change is based on the meta-golang[1] layer. Thanks to Matt
    Madison <matt at madison.systems> for his work on this.
    
    1. https://github.com/madisongh/meta-golang
    
    Signed-off-by: Otavio Salvador <otavio at ossystems.com.br>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/classes/goarch.bbclass | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/meta/classes/goarch.bbclass b/meta/classes/goarch.bbclass
index 0f0d8b6..0c22f80 100644
--- a/meta/classes/goarch.bbclass
+++ b/meta/classes/goarch.bbclass
@@ -50,6 +50,8 @@ def go_map_arm(a, f, d):
             return '7'
         elif 'armv6' in f:
             return '6'
+        elif 'armv5' in f:
+            return '5'
     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