summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorJuro Bystricky <juro.bystricky@intel.com>2016-10-11 09:56:24 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-10-15 10:01:43 +0100
commita35493d0fc36166203ea8c7b7a30333e32694d88 (patch)
treea179902d3eb70dc7a92006fb7bfd72205d681add /meta
parentca3c782964d55e7fbdc85134310f91da07e39cad (diff)
downloadpoky-a35493d0fc36166203ea8c7b7a30333e32694d88.tar.gz
insane.bbclass: Additional "mips" and "mipsel" machine definitions
Add "mips" and "mipsel" to "machdata" table. Although there is a way to add entries to the "machdata" table from a BSP without modifying the insane.bbclass directly, MIPS is already supported in poky and as such the relevant entries should be present in insane.bbclass. (From OE-Core rev: 3ba03d1affa6f647e9a03c8ba4389606a0da8e8b) Signed-off-by: Juro Bystricky <juro.bystricky@intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/classes/insane.bbclass2
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/classes/insane.bbclass b/meta/classes/insane.bbclass
index 17c9284391..29687d0a39 100644
--- a/meta/classes/insane.bbclass
+++ b/meta/classes/insane.bbclass
@@ -66,6 +66,8 @@ def package_qa_get_machine_dict(d):
66 "i586" : (3, 0, 0, True, 32), 66 "i586" : (3, 0, 0, True, 32),
67 "x86_64": (62, 0, 0, True, 64), 67 "x86_64": (62, 0, 0, True, 64),
68 "epiphany": (4643, 0, 0, True, 32), 68 "epiphany": (4643, 0, 0, True, 32),
69 "mips": ( 8, 0, 0, False, 32),
70 "mipsel": ( 8, 0, 0, True, 32),
69 }, 71 },
70 "linux" : { 72 "linux" : {
71 "aarch64" : (183, 0, 0, True, 64), 73 "aarch64" : (183, 0, 0, True, 64),