diff options
| author | Dave Chapman <dave@dchapman.com> | 2008-05-02 19:12:09 +0000 |
|---|---|---|
| committer | Dave Chapman <dave@dchapman.com> | 2008-05-02 19:12:09 +0000 |
| commit | f2042983f08cd49404be0b6916fc73d778fe8dba (patch) | |
| tree | 33a84414ca4d94770f900e92074c18ecadf23ed7 /firmware/target/arm/tcc77x/boot.lds | |
| parent | 4cf4b5c2aef075b719e834f30d17c0986fadb658 (diff) | |
| download | rockbox-f2042983f08cd49404be0b6916fc73d778fe8dba.zip rockbox-f2042983f08cd49404be0b6916fc73d778fe8dba.tar.gz rockbox-f2042983f08cd49404be0b6916fc73d778fe8dba.tar.bz2 rockbox-f2042983f08cd49404be0b6916fc73d778fe8dba.tar.xz | |
Add the Sansa M200 (v1) as a target - it's extremely similar to the Logik DAX (the LCD driver worked unchanged). Plus various tcc77x work, including a working tick interrupt (enabled in the bootloader). Rockbox itself builds for the M200 (there are no keymaps yet for the DAX), but doesn't progress very far due to the lack of an ATA (NAND flash) driver.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17306 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/target/arm/tcc77x/boot.lds')
| -rw-r--r-- | firmware/target/arm/tcc77x/boot.lds | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/firmware/target/arm/tcc77x/boot.lds b/firmware/target/arm/tcc77x/boot.lds index 21fc7db..890c4ec 100644 --- a/firmware/target/arm/tcc77x/boot.lds +++ b/firmware/target/arm/tcc77x/boot.lds @@ -10,16 +10,11 @@ STARTUP(target/arm/tcc77x/crt0.o) #define DRAMORIG 0x20000000 #define IRAMORIG 0x00000000 #define IRAMSIZE 64K -#define FLASHORIG 0x0000000 -#define FLASHSIZE 1M + MEMORY { -#ifdef TCCBOOT DRAM : ORIGIN = DRAMORIG + DRAMSIZE - 0x100000, LENGTH = 0x100000 -#else - DRAM : ORIGIN = DRAMORIG, LENGTH = DRAMSIZE -#endif IRAM : ORIGIN = IRAMORIG, LENGTH = IRAMSIZE } @@ -52,6 +47,7 @@ SECTIONS _stackend = .; stackend = .; } > DRAM + .bss : { _edata = .; *(.bss*); |