diff options
author | Benoît Thébaudeau | 2013-04-11 09:36:03 +0000 |
---|---|---|
committer | Albert ARIBAUD | 2013-04-12 07:55:09 +0200 |
commit | 1a9a91dcfa2554679f21ca863f72959f4b301807 (patch) | |
tree | 31a445991d5095798466d11608b753b4cd3e5583 /arch/arm/cpu/arm926ejs/mxs/u-boot-spl.lds | |
parent | 9ce8e2386c191eca7c94b99f3e80c24798ded5fc (diff) |
arm: Make all linker scripts compatible with per-symbol sections
Let all ARM linker scripts handle properly -ffunction-sections
and -fdata-sections. This will be useful for future changes in order to create
symbol-specific sections in common .S files.
Signed-off-by: Benoît Thébaudeau <benoit.thebaudeau@advansee.com>
Diffstat (limited to 'arch/arm/cpu/arm926ejs/mxs/u-boot-spl.lds')
-rw-r--r-- | arch/arm/cpu/arm926ejs/mxs/u-boot-spl.lds | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/arm/cpu/arm926ejs/mxs/u-boot-spl.lds b/arch/arm/cpu/arm926ejs/mxs/u-boot-spl.lds index 67b204e4475..673c725ab34 100644 --- a/arch/arm/cpu/arm926ejs/mxs/u-boot-spl.lds +++ b/arch/arm/cpu/arm926ejs/mxs/u-boot-spl.lds @@ -37,8 +37,8 @@ SECTIONS . = ALIGN(4); .text : { - arch/arm/cpu/arm926ejs/mxs/start.o (.text) - *(.text) + arch/arm/cpu/arm926ejs/mxs/start.o (.text*) + *(.text*) } . = ALIGN(4); @@ -46,7 +46,7 @@ SECTIONS . = ALIGN(4); .data : { - *(.data) + *(.data*) } . = ALIGN(4); |