summaryrefslogtreecommitdiff
path: root/nuttx/configs/ez80f910200zco/README.txt
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-11-26 17:07:34 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-11-26 17:07:34 +0000
commite4ffeb12c111d08f2422258e482c1db86286fe01 (patch)
treeff0df1702497422c18d8c6c2e3ab3895e0f966a1 /nuttx/configs/ez80f910200zco/README.txt
parent582b39047e192bf28c568fc53fcff168c8293841 (diff)
downloadpx4-nuttx-e4ffeb12c111d08f2422258e482c1db86286fe01.tar.gz
px4-nuttx-e4ffeb12c111d08f2422258e482c1db86286fe01.tar.bz2
px4-nuttx-e4ffeb12c111d08f2422258e482c1db86286fe01.zip
ez80f910200zco/ostest now uses Kconfig
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5390 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/configs/ez80f910200zco/README.txt')
-rw-r--r--nuttx/configs/ez80f910200zco/README.txt44
1 files changed, 44 insertions, 0 deletions
diff --git a/nuttx/configs/ez80f910200zco/README.txt b/nuttx/configs/ez80f910200zco/README.txt
index d39c419e0..bc4e11e27 100644
--- a/nuttx/configs/ez80f910200zco/README.txt
+++ b/nuttx/configs/ez80f910200zco/README.txt
@@ -93,6 +93,50 @@ ostest
This builds the examples/ostest application for execution from FLASH.
See examples/README.txt for information about ostest.
+- ostest
+ This builds the examples/ostest application for execution from FLASH.
+ See examples/README.txt for information about ostest.
+
+ NOTES:
+
+ 1. This configuration uses the mconf-based configuration tool. To
+ change this configuration using that tool, you should:
+
+ a. Build and install the mconf tool. See nuttx/README.txt and
+ misc/tools/
+
+ b. Execute 'make menuconfig' in nuttx/ in order to start the
+ reconfiguration process.
+
+ 2. By default, this configuration assumes that you are using the
+ Cygwin environment on Windows. An option is to use the native
+ CMD.exe window build as described in the top-level README.txt
+ file. To set up that configuration:
+
+ -CONFIG_WINDOWS_CYGWIN=y
+ +CONFIG_WINDOWS_NATIVE=y
+
+ And after configuring, make sure that CONFIG_APPS_DIR uses
+ the back slash character. For example:
+
+ CONFIG_APPS_DIR="..\apps"
+
+ NOTES:
+
+ a. If you need to change the toolchain path used in Make.defs, you
+ will need to use the short 8.3 filenames to avoid spaces. On my
+ PC, C:\PROGRA~1\ is is C:\Program Files\ and C:\PROGRA~2\ is
+ C:\Program Files (x86)\
+ b. You can't use setenv.sh in the native Windows environment. Try
+ scripts/setenv.bat instead.
+ c. At present, the native Windows build fails at the final link stages.
+ The failure is due to problems in arch/z80/src/nuttx/linkcmd that
+ is autogenerated by arch/z80/src/Makefile.zdsii. The basic program
+ is the spurious spaces and and carrirage returns are generated at
+ the end of the lines after a line continuation (\ ^M). If these
+ trailing bad characters are manually eliminated, then the build
+ will succeed on the next try.
+
nsh
This configuratino builds the NuttShell (NSH). That code can be
found in examples/nsh. For more information see: examples/nsh/README.txt