diff options
author | emaste <emaste@FreeBSD.org> | 2017-05-03 02:30:58 +0000 |
---|---|---|
committer | emaste <emaste@FreeBSD.org> | 2017-05-03 02:30:58 +0000 |
commit | c20bdaf8573b5949f6cd0fc88d99b48463d23607 (patch) | |
tree | 8590e6ac4e8001057dcb054819346db4f0270356 | |
parent | 8455ba0f9806cbf0f1f72a15f9bca48855bfb775 (diff) | |
download | FreeBSD-src-c20bdaf8573b5949f6cd0fc88d99b48463d23607.zip FreeBSD-src-c20bdaf8573b5949f6cd0fc88d99b48463d23607.tar.gz |
MFC r313411 (jhibbits): Add elf*-powerpc-freebsd targets
to the elftoolchain target list
FreeBSD uses the full target triple when generating embedded rootfs images
(MFS_IMAGE= make option). Without this change objcopy errors out with:
objcopy: elf64-poewrpc-freebsd: invalid target name
-rw-r--r-- | contrib/elftoolchain/libelftc/libelftc_bfdtarget.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/contrib/elftoolchain/libelftc/libelftc_bfdtarget.c b/contrib/elftoolchain/libelftc/libelftc_bfdtarget.c index 12cb168..48b67a0 100644 --- a/contrib/elftoolchain/libelftc/libelftc_bfdtarget.c +++ b/contrib/elftoolchain/libelftc/libelftc_bfdtarget.c @@ -127,6 +127,15 @@ struct _Elftc_Bfd_Target _libelftc_targets[] = { }, { + .bt_name = "elf32-powerpc-freebsd", + .bt_type = ETF_ELF, + .bt_byteorder = ELFDATA2MSB, + .bt_elfclass = ELFCLASS32, + .bt_machine = EM_PPC, + .bt_osabi = ELFOSABI_FREEBSD, + }, + + { .bt_name = "elf32-powerpcle", .bt_type = ETF_ELF, .bt_byteorder = ELFDATA2LSB, @@ -290,6 +299,15 @@ struct _Elftc_Bfd_Target _libelftc_targets[] = { }, { + .bt_name = "elf64-powerpc-freebsd", + .bt_type = ETF_ELF, + .bt_byteorder = ELFDATA2MSB, + .bt_elfclass = ELFCLASS64, + .bt_machine = EM_PPC64, + .bt_osabi = ELFOSABI_FREEBSD, + }, + + { .bt_name = "elf64-powerpcle", .bt_type = ETF_ELF, .bt_byteorder = ELFDATA2LSB, |