summaryrefslogtreecommitdiffstats
path: root/nuttx/configs/ez80f910200kitg
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-11-25 20:58:39 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-11-25 20:58:39 +0000
commit672ebadbf627fdff1a80a628f6320f0376c2be1f (patch)
tree614d4e2272f16363f0041625f860220e1480c982 /nuttx/configs/ez80f910200kitg
parent208da319dbc60ee6dafc78c8b7362409cbd3cb67 (diff)
A few native window build updates
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5387 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/configs/ez80f910200kitg')
-rw-r--r--nuttx/configs/ez80f910200kitg/README.txt18
-rw-r--r--nuttx/configs/ez80f910200kitg/ostest/defconfig3
-rw-r--r--nuttx/configs/ez80f910200kitg/scripts/setenv.bat (renamed from nuttx/configs/ez80f910200kitg/ostest/setenv.bat)2
3 files changed, 17 insertions, 6 deletions
diff --git a/nuttx/configs/ez80f910200kitg/README.txt b/nuttx/configs/ez80f910200kitg/README.txt
index 222a25db1f..004f607d4a 100644
--- a/nuttx/configs/ez80f910200kitg/README.txt
+++ b/nuttx/configs/ez80f910200kitg/README.txt
@@ -107,8 +107,20 @@ available:
CONFIG_APPS_DIR="..\apps"
- NOTE: 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 change C:\PROGRA~1\ is C:\PROGRA~2\ is C:\Program Files (x86)\
+ 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.
Check out any README.txt files in these <sub-directory>s.
diff --git a/nuttx/configs/ez80f910200kitg/ostest/defconfig b/nuttx/configs/ez80f910200kitg/ostest/defconfig
index e061e6289f..757916281c 100644
--- a/nuttx/configs/ez80f910200kitg/ostest/defconfig
+++ b/nuttx/configs/ez80f910200kitg/ostest/defconfig
@@ -232,11 +232,10 @@ CONFIG_MMCSD_SDIO=y
# CONFIG_SENSORS is not set
# CONFIG_SERCOMM_CONSOLE is not set
CONFIG_SERIAL=y
-# CONFIG_LOWLEVEL_CONSOLE is not set
+CONFIG_LOWLEVEL_CONSOLE=y
# CONFIG_16550_UART is not set
CONFIG_ARCH_HAVE_UART0=y
CONFIG_MCU_SERIAL=y
-CONFIG_STANDARD_SERIAL=y
CONFIG_UART0_SERIAL_CONSOLE=y
# CONFIG_NO_SERIAL_CONSOLE is not set
diff --git a/nuttx/configs/ez80f910200kitg/ostest/setenv.bat b/nuttx/configs/ez80f910200kitg/scripts/setenv.bat
index f461cf1cc2..3a1b987b4d 100644
--- a/nuttx/configs/ez80f910200kitg/ostest/setenv.bat
+++ b/nuttx/configs/ez80f910200kitg/scripts/setenv.bat
@@ -1,6 +1,6 @@
@echo off
-rem configs/ez80f810200kitg/ostest/setenv.bat
+rem configs/ez80f810200kitg/scripts/setenv.bat
rem
rem Copyright (C) 2012 Gregory Nutt. All rights reserved.
rem Author: Gregory Nutt <gnutt@nuttx.org>