From bff4d8ee600c0284ff789a59f8e58952e1a2d816 Mon Sep 17 00:00:00 2001
From: patacongo
Date: Fri, 4 Jan 2013 21:37:31 +0000
Subject: [PATCH] Add tools/configure.c and configure.bat
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5478 42af7a65-404d-4744-a932-0658087f49c3
---
Documentation/NuttxPortingGuide.html | 31 +++++++++++++++++++---------
1 file changed, 21 insertions(+), 10 deletions(-)
diff --git a/Documentation/NuttxPortingGuide.html b/Documentation/NuttxPortingGuide.html
index e626bf7a579..559253d45b7 100644
--- a/Documentation/NuttxPortingGuide.html
+++ b/Documentation/NuttxPortingGuide.html
@@ -1263,23 +1263,23 @@ tools/
|-- Makefile.host
|-- Makefile.export
|-- README.txt
-|-- configure.sh
+|-- configure.sh / configure.bat
|-- cfgparser.c
|-- cfgparser.h
-|-- copydir.sh
-|-- define.sh
-|-- incdir.sh
+|-- copydir.sh / copydir.bat
+|-- define.sh / define.bat
+|-- incdir.sh / indir.bat
|-- indent.sh
-|-- link.sh
+|-- link.sh / link.bat
|-- mkconfig.c
-|-- mkdeps.sh
+|-- mkdeps.sh / mkdeps.bat
|-- mkexport.sh
|-- mkimage.sh
|-- mknulldeps.sh
|-- mkromfsimg.sh
|-- mksyscall.c
|-- mkversion.c
-|-- unlink.sh
+|-- unlink.sh / unlink.bat
|-- version.sh
`-- zipme.sh
@@ -1416,17 +1416,28 @@ netutils/
cd tools
- ./configure.sh <board-name>[/<config-dir>]
+ ./configure.sh <board-name>[/<config-dir>]
- And if configs/<board-name>/[<config-dir>/appconfig
+ There is an alternative Windows batch file, configure.bat, that can be used insteach of configure.sh in the windows native enironment like:
+
+
+ cd tools
+ configure.bat <board-name>[\<config-dir>]
+
+
+ See tools/README.txt for more information about these scripts.
+
+
+
+ If configs/<board-name>/[<config-dir>]/appconfig
exists and your application directory is not in the standard loction (../apps),
then you should also specify the location of the application directory on the command line like:
cd tools
- ./configure.sh -a <app-dir> <board-name>[/<config-dir>]
+ ./configure.sh -a <app-dir> <board-name>[/<config-dir>]