diff options
author | Andreas Schwab <schwab@linux-m68k.org> | 2016-05-20 19:37:29 +0200 |
---|---|---|
committer | Mark Wielaard <mjw@redhat.com> | 2016-05-23 13:32:01 +0200 |
commit | 37bb3fcd9010f6fead99568613b2aa8a7fcdc703 (patch) | |
tree | 91eb79cdcc1543b014bf89fd6bec81e6985c818e /backends/m68k_init.c | |
parent | 239cd48bc87ffbf95e6fe2dd6bd708b3fc9b1855 (diff) | |
download | elfutils-37bb3fcd9010f6fead99568613b2aa8a7fcdc703.tar.gz |
Add support for m68k
Signed-off-by: Andreas Schwab <schwab@linux-m68k.org>
Diffstat (limited to 'backends/m68k_init.c')
-rw-r--r-- | backends/m68k_init.c | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/backends/m68k_init.c b/backends/m68k_init.c new file mode 100644 index 00000000..943478fb --- /dev/null +++ b/backends/m68k_init.c @@ -0,0 +1,60 @@ +/* Initialization of M68K specific backend library. + This file is part of elfutils. + + This file is free software; you can redistribute it and/or modify + it under the terms of either + + * the GNU Lesser General Public License as published by the Free + Software Foundation; either version 3 of the License, or (at + your option) any later version + + or + + * the GNU General Public License as published by the Free + Software Foundation; either version 2 of the License, or (at + your option) any later version + + or both in parallel, as here. + + elfutils is distributed in the hope that it will be useful, but + WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + General Public License for more details. + + You should have received copies of the GNU General Public License and + the GNU Lesser General Public License along with this program. If + not, see <http://www.gnu.org/licenses/>. */ + +#ifdef HAVE_CONFIG_H +# include <config.h> +#endif + +#define BACKEND m68k_ +#define RELOC_PREFIX R_68K_ +#include "libebl_CPU.h" + +/* This defines the common reloc hooks based on m68k_reloc.def. */ +#include "common-reloc.c" + + +const char * +m68k_init (Elf *elf __attribute__ ((unused)), + GElf_Half machine __attribute__ ((unused)), + Ebl *eh, + size_t ehlen) +{ + /* Check whether the Elf_BH object has a sufficent size. */ + if (ehlen < sizeof (Ebl)) + return NULL; + + /* We handle it. */ + eh->name = "M68K"; + m68k_init_reloc (eh); + HOOK (eh, gotpc_reloc_check); + HOOK (eh, reloc_simple_type); + HOOK (eh, return_value_location); + HOOK (eh, register_info); + HOOK (eh, core_note); + + return MODVERSION; +} |