From: Hsia-Jun Li Date: Fri, 20 Aug 2021 06:11:50 +0000 (+0800) Subject: lib/oe/elf: Add Android OS to machine_dict X-Git-Tag: uninative-3.4~126 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=2cec34178d6e5864c5d6280532a77cfb9cb255ea;p=openembedded-core.git lib/oe/elf: Add Android OS to machine_dict Add entries for Android to the mappings. Signed-off-by: Hsia-Jun Li Signed-off-by: Richard Purdie --- diff --git a/meta/lib/oe/elf.py b/meta/lib/oe/elf.py index df0a4593fa..46c884a775 100644 --- a/meta/lib/oe/elf.py +++ b/meta/lib/oe/elf.py @@ -61,6 +61,14 @@ def machine_dict(d): "microblaze": (189, 0, 0, False, 32), "microblazeel":(189, 0, 0, True, 32), }, + "linux-android" : { + "aarch64" : (183, 0, 0, True, 64), + "i686": ( 3, 0, 0, True, 32), + "x86_64": (62, 0, 0, True, 64), + }, + "linux-androideabi" : { + "arm" : (40, 97, 0, True, 32), + }, "linux-musl" : { "aarch64" : (183, 0, 0, True, 64), "aarch64_be" :(183, 0, 0, False, 64),