summaryrefslogtreecommitdiffstats
path: root/nuttx/configs/ez80f910200zco/nsh
diff options
context:
space:
mode:
authorpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2009-04-08 23:24:59 +0000
committerpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2009-04-08 23:24:59 +0000
commitbb29503ae6e314b57e36b5a88e6082ecab511fbe (patch)
tree947378478f9a3dd1f39913e9bac75a4400cb0c9c /nuttx/configs/ez80f910200zco/nsh
parentea9e0688d6752e4892c93d1124d965cc20425209 (diff)
Add option to copy to RAM
git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@1689 7fd9a85b-ad96-42d3-883c-3090e2eb8679
Diffstat (limited to 'nuttx/configs/ez80f910200zco/nsh')
-rw-r--r--nuttx/configs/ez80f910200zco/nsh/defconfig9
1 files changed, 6 insertions, 3 deletions
diff --git a/nuttx/configs/ez80f910200zco/nsh/defconfig b/nuttx/configs/ez80f910200zco/nsh/defconfig
index 1edcddbb4b..754d3bb8c5 100644
--- a/nuttx/configs/ez80f910200zco/nsh/defconfig
+++ b/nuttx/configs/ez80f910200zco/nsh/defconfig
@@ -768,8 +768,10 @@ CONFIG_EXAMPLE_WGET_NETMASK=(255L<<24|255L<<16|255L<<8|0L)
#
# Stack and heap information
#
-# CONFIG_BOOT_FROM_FLASH - Some configurations support XIP
-# operation from FLASH.
+# CONFIG_BOOT_RUNFROMFLASH - Some configurations support XIP
+# operation from FLASH but must copy initialized .data sections to RAM.
+# CONFIG_BOOT_COPYTORAM - Some configurations boot in FLASH
+# but copy themselves entirely into RAM for better performance.
# CONFIG_CUSTOM_STACK - The up_ implementation will handle
# all stack operations outside of the nuttx model.
# CONFIG_STACK_POINTER - The initial stack pointer
@@ -785,7 +787,8 @@ CONFIG_EXAMPLE_WGET_NETMASK=(255L<<24|255L<<16|255L<<8|0L)
# CONFIG_HEAP_BASE - The beginning of the heap
# CONFIG_HEAP_SIZE - The size of the heap
#
-CONFIG_BOOT_FROM_FLASH=n
+CONFIG_BOOT_RUNFROMFLASH=n
+CONFIG_BOOT_COPYTORAM=n
CONFIG_CUSTOM_STACK=n
CONFIG_STACK_POINTER=
CONFIG_IDLETHREAD_STACKSIZE=1024