summaryrefslogtreecommitdiffstats
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-06-01 14:29:29 +0100
commit56d4f91fe24a3dfa791b5c62a4103a182f500495 (patch)
tree5c8f1f00837d775cfdb28d96778e5259cf9bb76f /meta/classes/insane.bbclass
parent5d14f3c03a628f72fca05bb8e0434a91cdf50e94 (diff)
downloadpoky-56d4f91fe24a3dfa791b5c62a4103a182f500495.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 (From OE-Core rev: 9cd77aed67373e33dc69158ab02b94d7045c1119) 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():
98 "sh4": (42, 0, 0, True, 32), 98 "sh4": (42, 0, 0, True, 32),
99 99
100 }, 100 },
101 "linux-musl" : {
102 "arm" : ( 40, 97, 0, True, 32),
103 "armeb": ( 40, 97, 0, False, 32),
104 "powerpc": ( 20, 0, 0, False, 32),
105 "i386": ( 3, 0, 0, True, 32),
106 "i486": ( 3, 0, 0, True, 32),
107 "i586": ( 3, 0, 0, True, 32),
108 "i686": ( 3, 0, 0, True, 32),
109 "x86_64": ( 62, 0, 0, True, 64),
110 "mips": ( 8, 0, 0, False, 32),
111 "mipsel": ( 8, 0, 0, True, 32),
112 "mips64": ( 8, 0, 0, False, 64),
113 "mips64el": ( 8, 0, 0, True, 64),
114 },
101 "uclinux-uclibc" : { 115 "uclinux-uclibc" : {
102 "bfin": ( 106, 0, 0, True, 32), 116 "bfin": ( 106, 0, 0, True, 32),
103 }, 117 },
@@ -105,6 +119,10 @@ def package_qa_get_machine_dict():
105 "arm" : (40, 0, 0, True, 32), 119 "arm" : (40, 0, 0, True, 32),
106 "armeb" : (40, 0, 0, False, 32), 120 "armeb" : (40, 0, 0, False, 32),
107 }, 121 },
122 "linux-musleabi" : {
123 "arm" : (40, 0, 0, True, 32),
124 "armeb" : (40, 0, 0, False, 32),
125 },
108 "linux-uclibceabi" : { 126 "linux-uclibceabi" : {
109 "arm" : (40, 0, 0, True, 32), 127 "arm" : (40, 0, 0, True, 32),
110 "armeb" : (40, 0, 0, False, 32), 128 "armeb" : (40, 0, 0, False, 32),
@@ -112,6 +130,9 @@ def package_qa_get_machine_dict():
112 "linux-gnuspe" : { 130 "linux-gnuspe" : {
113 "powerpc": (20, 0, 0, False, 32), 131 "powerpc": (20, 0, 0, False, 32),
114 }, 132 },
133 "linux-muslspe" : {
134 "powerpc": (20, 0, 0, False, 32),
135 },
115 "linux-uclibcspe" : { 136 "linux-uclibcspe" : {
116 "powerpc": (20, 0, 0, False, 32), 137 "powerpc": (20, 0, 0, False, 32),
117 }, 138 },