summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2012-04-25 15:32:12 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-05-21 09:59:01 +0100
commit8262a6717fc2970a6d01810f557c539d606868c9 (patch)
tree57a2c3d0af4645ce1cdfc72d5b252d58d23adccb /meta
parentf99ac522027dfd0331ff37c551766ec8acfce697 (diff)
downloadpoky-8262a6717fc2970a6d01810f557c539d606868c9.tar.gz
insane.bbclass: Add mips64{el} to known machines
(From OE-Core rev: 77dc886107e1b9cdaf6803141dc97c3ebfc22910) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/classes/insane.bbclass4
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/classes/insane.bbclass b/meta/classes/insane.bbclass
index 8c4a83a34f..49e904a27f 100644
--- a/meta/classes/insane.bbclass
+++ b/meta/classes/insane.bbclass
@@ -59,6 +59,8 @@ def package_qa_get_machine_dict():
59 "m68k": ( 4, 0, 0, False, 32), 59 "m68k": ( 4, 0, 0, False, 32),
60 "mips": ( 8, 0, 0, False, 32), 60 "mips": ( 8, 0, 0, False, 32),
61 "mipsel": ( 8, 0, 0, True, 32), 61 "mipsel": ( 8, 0, 0, True, 32),
62 "mips64": ( 8, 0, 0, False, 64),
63 "mips64el": ( 8, 0, 0, True, 64),
62 "s390": (22, 0, 0, False, 32), 64 "s390": (22, 0, 0, False, 32),
63 "sh4": (42, 0, 0, True, 32), 65 "sh4": (42, 0, 0, True, 32),
64 "sparc": ( 2, 0, 0, False, 32), 66 "sparc": ( 2, 0, 0, False, 32),
@@ -74,6 +76,8 @@ def package_qa_get_machine_dict():
74 "x86_64": ( 62, 0, 0, True, 64), 76 "x86_64": ( 62, 0, 0, True, 64),
75 "mips": ( 8, 0, 0, False, 32), 77 "mips": ( 8, 0, 0, False, 32),
76 "mipsel": ( 8, 0, 0, True, 32), 78 "mipsel": ( 8, 0, 0, True, 32),
79 "mips64": ( 8, 0, 0, False, 64),
80 "mips64el": ( 8, 0, 0, True, 64),
77 "avr32": (6317, 0, 0, False, 32), 81 "avr32": (6317, 0, 0, False, 32),
78 "sh4": (42, 0, 0, True, 32), 82 "sh4": (42, 0, 0, True, 32),
79 83