summaryrefslogtreecommitdiffstats
path: root/backends/sparc_init.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@redhat.com>2008-04-01 02:30:05 +0000
committerRoland McGrath <roland@redhat.com>2008-04-01 02:30:05 +0000
commit13b69609bcd5638e6194d940855fea3dd0519605 (patch)
treeffaa63b3cd050285d68ebc6c437c012edb59ddf9 /backends/sparc_init.c
parentd11f9cbecac4a5ac3848a68597028d1924f3ff6b (diff)
downloadandroid_external_elfutils-13b69609bcd5638e6194d940855fea3dd0519605.tar.gz
android_external_elfutils-13b69609bcd5638e6194d940855fea3dd0519605.tar.bz2
android_external_elfutils-13b69609bcd5638e6194d940855fea3dd0519605.zip
backends/
* sparc_symbol.c (sparc_symbol_type_name): New function. (sparc_dynamic_tag_name): New function. (sparc_dynamic_tag_check): New function. * sparc_init.c (sparc_init): Initialize those hooks. libebl/ * ebldynamictagname.c (ebl_dynamic_tag_name): Use hex for unknown tag.
Diffstat (limited to 'backends/sparc_init.c')
-rw-r--r--backends/sparc_init.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/backends/sparc_init.c b/backends/sparc_init.c
index 8da845e2..856bd48c 100644
--- a/backends/sparc_init.c
+++ b/backends/sparc_init.c
@@ -1,5 +1,5 @@
/* Initialization of SPARC specific backend library.
- Copyright (C) 2002, 2005, 2006, 2007 Red Hat, Inc.
+ Copyright (C) 2002, 2005, 2006, 2007, 2008 Red Hat, Inc.
This file is part of Red Hat elfutils.
Red Hat elfutils is free software; you can redistribute it and/or modify
@@ -57,6 +57,10 @@ sparc_init (elf, machine, eh, ehlen)
sparc_init_reloc (eh);
HOOK (eh, reloc_simple_type);
HOOK (eh, machine_flag_check);
+ HOOK (eh, check_special_section);
+ HOOK (eh, symbol_type_name);
+ HOOK (eh, dynamic_tag_name);
+ HOOK (eh, dynamic_tag_check);
if (eh->class == ELFCLASS64)
eh->core_note = sparc64_core_note;
else