summaryrefslogtreecommitdiff
path: root/nuttx/configs/README.txt
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/configs/README.txt
parent1e3a335beb36c0e88d75e449759d4fc54f4e299e (diff)
downloadpx4-nuttx-ddb019413f39bbe495dba2a55c60f9ff8f8e00ce.tar.gz
px4-nuttx-ddb019413f39bbe495dba2a55c60f9ff8f8e00ce.tar.bz2
px4-nuttx-ddb019413f39bbe495dba2a55c60f9ff8f8e00ce.zip
Finally... renamed all CONFIG_DRAM_ settings to CONFIG_RAM_
Diffstat (limited to 'nuttx/configs/README.txt')
-rw-r--r--nuttx/configs/README.txt10
1 files changed, 5 insertions, 5 deletions
diff --git a/nuttx/configs/README.txt b/nuttx/configs/README.txt
index 35b41c5d9..17cfed5c0 100644
--- a/nuttx/configs/README.txt
+++ b/nuttx/configs/README.txt
@@ -188,9 +188,9 @@ architecture/board-specific settings).
Some architectures require a description of the RAM configuration:
- CONFIG_DRAM_SIZE - Describes the installed DRAM.
- CONFIG_DRAM_START - The start address of DRAM (physical)
- CONFIG_DRAM_VSTART - The start address of DRAM (virtual)
+ CONFIG_RAM_SIZE - Describes the installed DRAM.
+ CONFIG_RAM_START - The start address of DRAM (physical)
+ CONFIG_RAM_VSTART - The start address of DRAM (virtual)
General build options:
@@ -630,12 +630,12 @@ architecture/board-specific settings).
be a value supported by the processor's memory management unit.
CONFIG_PAGING_NLOCKED - This is the number of locked pages in the
memory map. The locked address region will then be from
- CONFIG_DRAM_VSTART through (CONFIG_DRAM_VSTART +
+ CONFIG_RAM_VSTART through (CONFIG_RAM_VSTART +
CONFIG_PAGING_PAGESIZE*CONFIG_PAGING_NLOCKED)
CONFIG_PAGING_LOCKED_PBASE and CONFIG_PAGING_LOCKED_VBASE - These
may be defined to determine the base address of the locked page
regions. If neither are defined, the logic will be set the bases
- to CONFIG_DRAM_START and CONFIG_DRAM_VSTART (i.e., it assumes
+ to CONFIG_RAM_START and CONFIG_RAM_VSTART (i.e., it assumes
that the base address of the locked region is at the beginning
of RAM).
NOTE: In some architectures, it may be necessary to take some