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 (
cd tools - ./configure.sh -a <app-dir> <board-name>[/<config-dir>] + ./configure.sh -a <app-dir> <board-name>[/<config-dir>]