diff options
| author | Thomas Martitz <kugel@rockbox.org> | 2010-03-04 12:32:12 +0000 |
|---|---|---|
| committer | Thomas Martitz <kugel@rockbox.org> | 2010-03-04 12:32:12 +0000 |
| commit | 2ac962aceb0ea2199c9d89e94e474641013ba390 (patch) | |
| tree | e80d060ad7a743c4deacc2cc252d32fa0ba21559 | |
| parent | a4c3913afd8fe138b2a7d902d2ff08e13cfd59b8 (diff) | |
| download | rockbox-2ac962aceb0ea2199c9d89e94e474641013ba390.zip rockbox-2ac962aceb0ea2199c9d89e94e474641013ba390.tar.gz rockbox-2ac962aceb0ea2199c9d89e94e474641013ba390.tar.bz2 rockbox-2ac962aceb0ea2199c9d89e94e474641013ba390.tar.xz | |
Fix as3525 lowmem targets. They put the init code into the plugin buffer, but some init functions are grabbing it.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25023 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/target/arm/as3525/app.lds | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/target/arm/as3525/app.lds b/firmware/target/arm/as3525/app.lds index 6e610d6..56a4b20 100644 --- a/firmware/target/arm/as3525/app.lds +++ b/firmware/target/arm/as3525/app.lds @@ -110,7 +110,7 @@ SECTIONS _iend = .; } > IRAM - .init ENDAUDIOADDR : + .init CODECORIG : { . = ALIGN(4); _initstart = .; |