summaryrefslogtreecommitdiff
path: root/nuttx/tools
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-01-09 12:55:13 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-01-09 12:55:13 +0000
commit6afb58c74e1b0bbfe3306e1a3a00d31462c598fa (patch)
tree9c78e5873d7cf77b3479315a96d18fabfa86f718 /nuttx/tools
parentba1189436af1c941497484d199f383ffc64dc38f (diff)
downloadpx4-nuttx-6afb58c74e1b0bbfe3306e1a3a00d31462c598fa.tar.gz
px4-nuttx-6afb58c74e1b0bbfe3306e1a3a00d31462c598fa.tar.bz2
px4-nuttx-6afb58c74e1b0bbfe3306e1a3a00d31462c598fa.zip
Use kconfig- prefix to avoid tool name conflicts (from Jose Pablo Carballo)
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5496 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/tools')
-rw-r--r--nuttx/tools/README.txt8
-rwxr-xr-xnuttx/tools/kconfig.bat6
2 files changed, 7 insertions, 7 deletions
diff --git a/nuttx/tools/README.txt b/nuttx/tools/README.txt
index 5651ff2f0..8df4a7783 100644
--- a/nuttx/tools/README.txt
+++ b/nuttx/tools/README.txt
@@ -445,11 +445,11 @@ kconfig.bat
only a few options for the Windows user (see the top-level README.txt
file).
- You can, with some effort, run the the Cygwin mconf tool directly
+ You can, with some effort, run the the Cygwin kconfig-mconf tool directly
in the CMD.exe shell. In this case, you do not have to modify the
.config file, but there are other complexities: You need to
temporarily set the Cgywin directories in the PATH variable and
- then run mconf outside of the Make system.
+ then run kconfig-mconf outside of the Make system.
kconfig.bat is a Windows batch file at tools/kconfig.bat that automates
these steps. It is used from the top-level NuttX directory like:
@@ -457,8 +457,8 @@ kconfig.bat
tools/kconfig menuconfig
NOTE: There is an currently an issue with accessing DOS environment
- variables from the Cygwin mconf running in the CMD.exe shell. The
- following change to the top-level Kconfig file seems to work around
+ variables from the Cygwin kconfig-mconf running in the CMD.exe shell.
+ The following change to the top-level Kconfig file seems to work around
these problems:
config APPSDIR
diff --git a/nuttx/tools/kconfig.bat b/nuttx/tools/kconfig.bat
index 65ab60506..db01e7515 100755
--- a/nuttx/tools/kconfig.bat
+++ b/nuttx/tools/kconfig.bat
@@ -100,15 +100,15 @@ echo ERROR: Unrecognized action: %action%
goto :ShowUsage
:DoConfig
-conf Kconfig
+kconfig-conf Kconfig
goto End
:DoOldConfig
-conf --oldconfig Kconfig
+kconfig-conf --oldconfig Kconfig
goto End
:DoMenuConfig
-mconf Kconfig
+kconfig-mconf Kconfig
goto End
:MissingArgument