summaryrefslogtreecommitdiffstats
path: root/meta/lib
diff options
context:
space:
mode:
authorNathan Rossi <nathan@nathanrossi.com>2018-09-21 06:27:31 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-09-21 18:45:47 -0700
commit431d7c92c5c75446efced9c4ebe0e276d4400d57 (patch)
treee557050a8a570aba54e131d90edfc8d98f4b6d39 /meta/lib
parenta716317331b70e6d8cff8ed8400da506d22fd707 (diff)
downloadpoky-431d7c92c5c75446efced9c4ebe0e276d4400d57.tar.gz
lib/oe/elf.py: Add LatticeMico32 architecture definition
Add the ELF definition for the LaticeMico32 architecture. This architecture is 'elf' OS only as it does not target Linux. (From OE-Core rev: d14f86f39a25649c923deecc24a283ba968b13f5) Signed-off-by: Nathan Rossi <nathan@nathanrossi.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-rw-r--r--meta/lib/oe/elf.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/lib/oe/elf.py b/meta/lib/oe/elf.py
index e63d268c35..0ed59ae05c 100644
--- a/meta/lib/oe/elf.py
+++ b/meta/lib/oe/elf.py
@@ -13,6 +13,7 @@ def machine_dict(d):
13 "i586" : (3, 0, 0, True, 32), 13 "i586" : (3, 0, 0, True, 32),
14 "x86_64": (62, 0, 0, True, 64), 14 "x86_64": (62, 0, 0, True, 64),
15 "epiphany": (4643, 0, 0, True, 32), 15 "epiphany": (4643, 0, 0, True, 32),
16 "lm32": (138, 0, 0, False, 32),
16 "mips": ( 8, 0, 0, False, 32), 17 "mips": ( 8, 0, 0, False, 32),
17 "mipsel": ( 8, 0, 0, True, 32), 18 "mipsel": ( 8, 0, 0, True, 32),
18 "microblaze": (189, 0, 0, False, 32), 19 "microblaze": (189, 0, 0, False, 32),