diff options
author | Michael Sevakis <jethead71@rockbox.org> | 2011-12-17 01:43:32 +0000 |
---|---|---|
committer | Michael Sevakis <jethead71@rockbox.org> | 2011-12-17 01:43:32 +0000 |
commit | 28dec004c0782e81661d9803ddf51a19b58dc469 (patch) | |
tree | a2651e48ceac9f3b448f361ef13e610316902ab8 /firmware/target/arm/imx233/boot.lds | |
parent | 8f92ab02e16c4d2b613214559651269843da96a8 (diff) | |
download | rockbox-28dec004c0782e81661d9803ddf51a19b58dc469.tar.gz rockbox-28dec004c0782e81661d9803ddf51a19b58dc469.tar.bz2 rockbox-28dec004c0782e81661d9803ddf51a19b58dc469.zip |
Do some things to make -ffunction-sections work better.
* Add wildcards to various sections placements a la *(".text") => "*(.text*)"
* Remove hacky bits from those linker scripts (no problem encountered testing)
* Change section for asm functions from .<section> to .<section>.<function>
so that -ffunction-sections works for those asm file too.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31337 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/target/arm/imx233/boot.lds')
-rw-r--r-- | firmware/target/arm/imx233/boot.lds | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/firmware/target/arm/imx233/boot.lds b/firmware/target/arm/imx233/boot.lds index d909b9fbd1..ac1209a475 100644 --- a/firmware/target/arm/imx233/boot.lds +++ b/firmware/target/arm/imx233/boot.lds @@ -44,9 +44,9 @@ SECTIONS _iramstart = .; // always 0 *(.vectors) KEEP(*(.vectors));// otherwise there are no references to it and the linker strip it - *(.icode) - *(.irodata) - *(.idata) + *(.icode*) + *(.irodata*) + *(.idata*) . = ALIGN(0x4); _iramend = .; } > IRAM AT> DRAM @@ -62,7 +62,7 @@ SECTIONS { _iedata = .; *(.qharray) - *(.ibss) + *(.ibss*) . = ALIGN(0x4); _iend = .; } > IRAM |