summaryrefslogtreecommitdiff
path: root/nuttx/configs/sam4e-ek/scripts
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-03-12 10:59:19 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-03-12 10:59:19 -0600
commit987a8ccb44e02094d009edd0f44e66a96dd10924 (patch)
treeae6baff212969877a67ae7c1f4608ecde32e6175 /nuttx/configs/sam4e-ek/scripts
parent2e89159a7a892e6f028e5ecfdd4804526f2793f6 (diff)
downloadpx4-nuttx-987a8ccb44e02094d009edd0f44e66a96dd10924.tar.gz
px4-nuttx-987a8ccb44e02094d009edd0f44e66a96dd10924.tar.bz2
px4-nuttx-987a8ccb44e02094d009edd0f44e66a96dd10924.zip
SAM4E: Various bring-up fixes. NSH now works
Diffstat (limited to 'nuttx/configs/sam4e-ek/scripts')
-rwxr-xr-xnuttx/configs/sam4e-ek/scripts/flash.ld4
1 files changed, 2 insertions, 2 deletions
diff --git a/nuttx/configs/sam4e-ek/scripts/flash.ld b/nuttx/configs/sam4e-ek/scripts/flash.ld
index cc61cfa47..1a8d3a399 100755
--- a/nuttx/configs/sam4e-ek/scripts/flash.ld
+++ b/nuttx/configs/sam4e-ek/scripts/flash.ld
@@ -33,7 +33,7 @@
*
****************************************************************************/
-/* The SAM4E16 has 1025KB of FLASH beginning at address 0x0008:0000,
+/* The SAM4E16 has 1024KB of FLASH beginning at address 0x0040:0000,
* 128KB of SRAM beginning at address 0x2000:0000. When booting from FLASH,
* FLASH memory is aliased to address 0x0000:0000 where the code expects to
* begin execution by jumping to the entry point in the 0x0800:0000 address
@@ -42,7 +42,7 @@
MEMORY
{
- flash (rx) : ORIGIN = 0x00080000, LENGTH = 1024K
+ flash (rx) : ORIGIN = 0x00400000, LENGTH = 1024K
sram (rwx) : ORIGIN = 0x20000000, LENGTH = 128K
}