aboutsummaryrefslogtreecommitdiffstats
path: root/meta/classes/insane.bbclass
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2014-05-29 00:01:01 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-05-30 16:31:21 +0100
commit9cd77aed67373e33dc69158ab02b94d7045c1119 (patch)
tree48c195dd62b28cd850612b8d8a667acdc6aec0a6 /meta/classes/insane.bbclass
parent762d425ed6f6d9046d3e3230c44b42ea6173b447 (diff)
downloadopenembedded-core-contrib-9cd77aed67373e33dc69158ab02b94d7045c1119.tar.gz
siteinfo, insane: Recognize musl specific triplets
We will use '-musl' to identify musl based systems this patch lays the foundation for recognising those and map them to internal variable representations Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/insane.bbclass')
-rw-r--r--meta/classes/insane.bbclass21
1 files changed, 21 insertions, 0 deletions
diff --git a/meta/classes/insane.bbclass b/meta/classes/insane.bbclass
index 9ce336415a..c8fa7116b3 100644
--- a/meta/classes/insane.bbclass
+++ b/meta/classes/insane.bbclass
@@ -98,6 +98,20 @@ def package_qa_get_machine_dict():
"sh4": (42, 0, 0, True, 32),
},
+ "linux-musl" : {
+ "arm" : ( 40, 97, 0, True, 32),
+ "armeb": ( 40, 97, 0, False, 32),
+ "powerpc": ( 20, 0, 0, False, 32),
+ "i386": ( 3, 0, 0, True, 32),
+ "i486": ( 3, 0, 0, True, 32),
+ "i586": ( 3, 0, 0, True, 32),
+ "i686": ( 3, 0, 0, True, 32),
+ "x86_64": ( 62, 0, 0, True, 64),
+ "mips": ( 8, 0, 0, False, 32),
+ "mipsel": ( 8, 0, 0, True, 32),
+ "mips64": ( 8, 0, 0, False, 64),
+ "mips64el": ( 8, 0, 0, True, 64),
+ },
"uclinux-uclibc" : {
"bfin": ( 106, 0, 0, True, 32),
},
@@ -105,6 +119,10 @@ def package_qa_get_machine_dict():
"arm" : (40, 0, 0, True, 32),
"armeb" : (40, 0, 0, False, 32),
},
+ "linux-musleabi" : {
+ "arm" : (40, 0, 0, True, 32),
+ "armeb" : (40, 0, 0, False, 32),
+ },
"linux-uclibceabi" : {
"arm" : (40, 0, 0, True, 32),
"armeb" : (40, 0, 0, False, 32),
@@ -112,6 +130,9 @@ def package_qa_get_machine_dict():
"linux-gnuspe" : {
"powerpc": (20, 0, 0, False, 32),
},
+ "linux-muslspe" : {
+ "powerpc": (20, 0, 0, False, 32),
+ },
"linux-uclibcspe" : {
"powerpc": (20, 0, 0, False, 32),
},