2004-03-03 Joel Sherrill <joel@OARcorp.com>

* startup/linkcmds: Add more memory so tests can link. This is a
	generic BSP for a CPU model so OK to do this.
This commit is contained in:
Joel Sherrill
2004-03-03 14:20:36 +00:00
parent 22eda53c71
commit cc3de44e98
2 changed files with 10 additions and 0 deletions

View File

@@ -1,3 +1,8 @@
2004-03-03 Joel Sherrill <joel@OARcorp.com>
* startup/linkcmds: Add more memory so tests can link. This is a
generic BSP for a CPU model so OK to do this.
2004-02-19 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* Makefile.am: Reflect changes to bsp.am.

View File

@@ -3,8 +3,13 @@ OUTPUT_FORMAT("elf32-littlearm", "elf32-bigarm",
OUTPUT_ARCH(arm)
ENTRY(_start)
MEMORY {
/* Settings as submitted which won't match an arbitrary user board
and are not enough to link every test case so changed to link all tests.
FLASH (rx) : ORIGIN = 0x200000, LENGTH = 512K
RAM (!rx) : ORIGIN = 0x400000, LENGTH = 128K
*/
FLASH (rx) : ORIGIN = 0x200000, LENGTH = 1024K
RAM (!rx) : ORIGIN = 0x600000, LENGTH = 128K
}
/* Do we need any of these for elf?