diff --git a/Documentation/NuttxPortingGuide.html b/Documentation/NuttxPortingGuide.html index c0cd8eaca83..636eaaa5883 100644 --- a/Documentation/NuttxPortingGuide.html +++ b/Documentation/NuttxPortingGuide.html @@ -16,7 +16,7 @@

by

Gregory Nutt

-

Last Update: March 26, 2007

+

Last Update: April 30, 2007

Table of Contents

@@ -325,32 +325,75 @@

2.2.3 Supported Architectures

+

+ Archictecture- and Chip-Specific Directories. + All processor architecture-specific directories are maintained in sub-directories of + the arch/ directory. + Different chips or SoC's may implement the same processor core. + Chip-specific logic can be found in sub-directories under the architecture + directory. + Current architecture/chip directories are summarized below: +

+ +

+ Deprecated Architecture Directories. + The following architecture directories are deprecated. They have been + replaced by the logic in arm/arm and will deleted when + arch/arm is fully verified. +

+

Other ports for the for the TI TMS320DM270 and for MIPS are in various states @@ -1045,7 +1088,10 @@ The system can be re-made subsequently by just typing make.

Architecture selection

- +

+ The following configuration itemes select the architecture, chip, and + board configuration for the build. +

  • CONFIG_ARCH: Identifies the arch subdirectory
  • @@ -1062,6 +1108,18 @@ The system can be re-made subsequently by just typing make. For use in C code
+

+ Some architectures require a description of the the RAM configuration: +

+
    +
  • CONFIG_DRAM_SIZE: + Describes the installed DRAM.
  • +
  • CONFIG_DRAM_START: + The start address of DRAM (physical)
  • +
  • CONFIG_DRAM_VSTART: + The startaddress of DRAM (virtual)
  • +
+

General OS setup