diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog index 2e17f8eb1..3ba81d4a7 100644 --- a/nuttx/ChangeLog +++ b/nuttx/ChangeLog @@ -3243,3 +3243,7 @@ for testing the changes to the uIP web server (see apps/ChangeLog.txt). * lib/stdio/lib_perror.c: Remove CONFIG_LIBC_PERROR_DEVNAME. What was I thinking? Arbitrary streams cannot be shared by different tasks. + * tools/mksyscall.c, csvparser.c, and csvparser.h: Separate CSV parsing + logic from mksyscall.c into files where it can be shared. + * tools/mksymtab.c: Add a tool that can be used to convert a CSV file + into a NuttX-style symbol table. diff --git a/nuttx/Documentation/NuttXDemandPaging.html b/nuttx/Documentation/NuttXDemandPaging.html index c238161a8..082edd21b 100644 --- a/nuttx/Documentation/NuttXDemandPaging.html +++ b/nuttx/Documentation/NuttXDemandPaging.html @@ -8,7 +8,6 @@

On-Demand Paging

-

>>> Under Construction <<<

Last Updated: August 12, 2010

diff --git a/nuttx/Documentation/NuttXNxFlat.html b/nuttx/Documentation/NuttXNxFlat.html index e6923a8bc..8fab8fed1 100644 --- a/nuttx/Documentation/NuttXNxFlat.html +++ b/nuttx/Documentation/NuttXNxFlat.html @@ -9,8 +9,7 @@

NXFLAT

-

>>> Under Construction <<<

-

Last Updated: June 29, 2012

+

Last Updated: September 1, 2012

@@ -90,7 +89,13 @@
- 1.4 Making an NXFLAT module + 1.4 mksymtab + + + +
+ + 1.5 Making an NXFLAT module @@ -122,7 +127,7 @@

1.0 Overview

-f +

1.1 Functionality

@@ -386,7 +391,41 @@ any following arguments. debug output is enabled [Default: no verbose output]. -

1.4 Making an NXFLAT module

+

1.4 mksymtab

+ +

+ There is a small helper program available in nuttx/tools call mksymtab. + mksymtab can be sued to generate symbol tables for the NuttX base code that would be usable by the typical NXFLAT application. + mksymtab builds symbol tables from common-separated value (CSV) files. + In particular, the CSV files: +

+
    +
  1. + nuttx/syscall/syscall.csv that describes the NuttX RTOS interface, and +
  2. +
  3. + nuttx/lib/lib/csv that describes the NuttX C library interface. +
  4. +
+ +

+ For example, +

+ + +

1.5 Making an NXFLAT module

Below is a snippet from an NXFLAT make file (simplified from NuttX @@ -639,8 +678,7 @@ any following arguments.

@@ -652,8 +690,7 @@ any following arguments.