diff options
| author | Amaury Pouly <amaury.pouly@gmail.com> | 2012-05-20 00:53:59 +0200 |
|---|---|---|
| committer | Amaury Pouly <amaury.pouly@gmail.com> | 2012-05-20 01:35:24 +0200 |
| commit | e1713fd902d7ab49f77ca6dcd981b4b03dd40485 (patch) | |
| tree | 70f097923854cbf84e3da65722be3e7574b1de93 | |
| parent | f94db35d5e393675111c78aa273fc2cd0b37814f (diff) | |
| download | rockbox-e1713fd902d7ab49f77ca6dcd981b4b03dd40485.zip rockbox-e1713fd902d7ab49f77ca6dcd981b4b03dd40485.tar.gz rockbox-e1713fd902d7ab49f77ca6dcd981b4b03dd40485.tar.bz2 rockbox-e1713fd902d7ab49f77ca6dcd981b4b03dd40485.tar.xz | |
imx233: remove useless alignments in linker scripts
Change-Id: I7fc5445f405e1a3e8830ddec2f7652e66a03a633
| -rw-r--r-- | firmware/target/arm/imx233/app.lds | 5 | ||||
| -rw-r--r-- | firmware/target/arm/imx233/boot.lds | 2 |
2 files changed, 0 insertions, 7 deletions
diff --git a/firmware/target/arm/imx233/app.lds b/firmware/target/arm/imx233/app.lds index 89cf33b..5eb3d5e 100644 --- a/firmware/target/arm/imx233/app.lds +++ b/firmware/target/arm/imx233/app.lds @@ -55,7 +55,6 @@ SECTIONS *(.icode*) *(.irodata*) *(.idata*) - . = ALIGN(0x4); _iramend = .; } > IRAM AT> DRAM @@ -66,16 +65,13 @@ SECTIONS _iedata = .; *(.qharray) *(.ibss*) - . = ALIGN(0x4); _iend = .; } > IRAM .init ENDAUDIOADDR : { - . = ALIGN(4); _initstart = .; *(.init*) - . = ALIGN(0x4); _initend = .; } AT> DRAM @@ -119,7 +115,6 @@ SECTIONS .audiobuf (NOLOAD) : { - . = ALIGN(4); _audiobuffer = .; audiobuffer = .; } > DRAM diff --git a/firmware/target/arm/imx233/boot.lds b/firmware/target/arm/imx233/boot.lds index ac1209a..68472d1 100644 --- a/firmware/target/arm/imx233/boot.lds +++ b/firmware/target/arm/imx233/boot.lds @@ -47,7 +47,6 @@ SECTIONS *(.icode*) *(.irodata*) *(.idata*) - . = ALIGN(0x4); _iramend = .; } > IRAM AT> DRAM @@ -63,7 +62,6 @@ SECTIONS _iedata = .; *(.qharray) *(.ibss*) - . = ALIGN(0x4); _iend = .; } > IRAM |