summaryrefslogtreecommitdiff
path: root/nuttx/arch/Kconfig
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2013-07-26 10:09:17 -0600
committerGregory Nutt <gnutt@nuttx.org>2013-07-26 10:09:17 -0600
commitddb019413f39bbe495dba2a55c60f9ff8f8e00ce (patch)
tree9637f5cb852af32d6a500699ac6c16b25342dd8c /nuttx/arch/Kconfig
parent1e3a335beb36c0e88d75e449759d4fc54f4e299e (diff)
downloadnuttx-ddb019413f39bbe495dba2a55c60f9ff8f8e00ce.tar.gz
nuttx-ddb019413f39bbe495dba2a55c60f9ff8f8e00ce.tar.bz2
nuttx-ddb019413f39bbe495dba2a55c60f9ff8f8e00ce.zip
Finally... renamed all CONFIG_DRAM_ settings to CONFIG_RAM_
Diffstat (limited to 'nuttx/arch/Kconfig')
-rw-r--r--nuttx/arch/Kconfig33
1 files changed, 18 insertions, 15 deletions
diff --git a/nuttx/arch/Kconfig b/nuttx/arch/Kconfig
index c24da579d..860222108 100644
--- a/nuttx/arch/Kconfig
+++ b/nuttx/arch/Kconfig
@@ -194,30 +194,33 @@ config ARCH_CALIBRATION
watch to measure the actual delay then adjust BOARD_LOOPSPERMSEC until
the actual delay is 100 seconds.
-config DRAM_START
- hex "DRAM start physical address"
+config RAM_START
+ hex "Primary RAM start address (physical)"
default 0x0
help
- The physical start address of installed RAM. Despite the naming,
- this may be SDRAM or SRAM or any other RAM technology that support
- program execution.
+ The physical start address of primary installed RAM. "Primary" RAM
+ refers to the RAM that you link program code into. If program code
+ does not excecute out of RAM but from FLASH, then you may designate
+ any block of RAM as "primary."
-config DRAM_VSTART
- hex "DRAM start virtual address"
+config RAM_VSTART
+ hex "Primary RAM start address (virtual)"
default 0x0
depends on ARCH_HAVE_MMU
help
- The virtual start address of installed RAM. Despite the naming,
- this may be SDRAM or SRAM or any other RAM technology that support
- program execution.
+ The virtual start address of installed primary RAM. "Primary" RAM
+ refers to the RAM that you link program code into. If program code
+ does not excecute out of RAM but from FLASH, then you may designate
+ any block of RAM as "primary."
-config DRAM_SIZE
- int "DRAM size"
+config RAM_SIZE
+ int "Primary RAM size"
default 0
help
- The size in bytes of the installed RAM. Despite the naming,
- this may be SDRAM or SRAM or any other RAM technology that support
- program execution.
+ The size in bytes of the installed primary RAM. "Primary" RAM
+ refers to the RAM that you link program code into. If program code
+ does not excecute out of RAM but from FLASH, then you may designate
+ any block of RAM as "primary."
config ARCH_HAVE_INTERRUPTSTACK
bool