diff options
| author | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2013-06-11 14:17:31 +0200 | 
|---|---|---|
| committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2013-06-21 23:04:05 +0200 | 
| commit | 09d81184e103a07825d9f16e86e37c28d3605568 (patch) | |
| tree | e0be1af5c25bc5a29c2cb4f897404126821ac0bf /include/asm-generic/sections.h | |
| parent | c37980c31a30f0623a0ca8f112298e44039ed6bb (diff) | |
| download | olio-uboot-2014.01-09d81184e103a07825d9f16e86e37c28d3605568.tar.xz olio-uboot-2014.01-09d81184e103a07825d9f16e86e37c28d3605568.zip | |
remove all references to .dynsym
Discard all .dynsym sections from linker scripts
Remove all __dynsym_start definitions from linker scripts
Remove all __dynsym_start references from the codebase
Note: this touches include/asm-generic/sections.h, which
is not ARM-specific, but actual uses of __dynsym_start
are only in ARM, so this patch can safely go through
the ARM repository.
Signed-off-by: Albert ARIBAUD <albert.u.boot@aribaud.net>
Tested-by: Lubomir Popov <lpopov@mm-sol.com>
Tested-by: Jeroen Hofstee <jeroen@myspectrum.nl>
Reviewed-by: Benoît Thébaudeau <benoit.thebaudeau@advansee.com>
Diffstat (limited to 'include/asm-generic/sections.h')
| -rw-r--r-- | include/asm-generic/sections.h | 3 | 
1 files changed, 0 insertions, 3 deletions
| diff --git a/include/asm-generic/sections.h b/include/asm-generic/sections.h index 4b3984454..3e32eee92 100644 --- a/include/asm-generic/sections.h +++ b/include/asm-generic/sections.h @@ -90,9 +90,6 @@ extern void _start(void);  extern ulong _rel_dyn_start_ofs;  extern ulong _rel_dyn_end_ofs; -/* Start/end of the relocation symbol table, as an offset from _start */ -extern ulong _dynsym_start_ofs; -  /* End of the region to be relocated, as an offset form _start */  extern ulong _image_copy_end_ofs; |