diff options
author | Alejandro Enedino Hernandez Samaniego <alejandr@xilinx.com> | 2018-05-04 12:57:41 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-06-15 08:54:17 +0100 |
commit | 6f7ef4f6049fa8f2a8e17abfcf53ccbc22394088 (patch) | |
tree | f728cdbb09c959b76ec28031d08a2e66e87b6c22 | |
parent | fe490ff829440b94124317759d856e2e2daf5047 (diff) | |
download | openembedded-core-6f7ef4f6049fa8f2a8e17abfcf53ccbc22394088.tar.gz openembedded-core-6f7ef4f6049fa8f2a8e17abfcf53ccbc22394088.tar.bz2 openembedded-core-6f7ef4f6049fa8f2a8e17abfcf53ccbc22394088.zip |
insane.bbclass: Adds powerpc to elf headers machine dictionary
This patch adds makes it possible to build elf for powerpc by adding
this combination to the elf headers machine dictionary, this can be
useful when trying to build baremetal applications where the TARGET_OS=elf
Signed-off-by: Alejandro Enedino Hernandez Samaniego <alejandr@xilinx.com>
-rw-r--r-- | meta/classes/insane.bbclass | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/classes/insane.bbclass b/meta/classes/insane.bbclass index fa15460842..bd7f51956a 100644 --- a/meta/classes/insane.bbclass +++ b/meta/classes/insane.bbclass @@ -71,6 +71,7 @@ def package_qa_get_machine_dict(d): "microblaze": (189, 0, 0, False, 32), "microblazeeb":(189, 0, 0, False, 32), "microblazeel":(189, 0, 0, True, 32), + "powerpc": (20, 0, 0, False, 32), "riscv32": (243, 0, 0, True, 32), "riscv64": (243, 0, 0, True, 64), }, |