configs/olimex-strp711/nettest: Converted to use kconfig-frontends tools

This commit is contained in:
Gregory Nutt 2014-03-03 10:52:02 -06:00
parent f5888496fb
commit 4ac4814fb4
8 changed files with 960 additions and 432 deletions

View File

@ -6758,3 +6758,5 @@
tools (2014-3-2)
* configs/c5471evm/nettest: Configuration converted to use the
kconfig-frontends tools (2014-3-3)
* configs/olimex-strp11/nettest: Configuration converted to use the
kconfig-frontends tools (2014-3-3)

View File

@ -4,3 +4,207 @@
#
comment "STR71x Configuration Options"
menu "STR71x Peripheral Selections"
config STR71X_ADC12
bool "ADC12"
default n
select ADC
config STR71X_BSPI0
bool "BSPI0"
default n
select STR71X_GPIO0
select SPI
config STR71X_BSPI1
bool "BSPI1"
default n
select STR71X_GPIO0
select SPI
config STR71X_CAN
bool "CAN"
default n
select CAN
config STR71X_CKOUT
bool "CKOUT"
default n
config STR71X_GPIO0
bool "GPIO0"
default y
config STR71X_GPIO1
bool "GPIO1"
default n
config STR71X_GPIO2
bool "GPIO2"
default n
config STR71X_HDLC
bool "HDLC"
default n
config STR71X_I2C0
bool "I2C0"
default n
select I2C
config STR71X_I2C1
bool "I2C1"
default n
select I2C
config STR71X_RTC
bool "RTC"
default n
select RTC
config STR71X_TIM1
bool "TIM1"
default n
config STR71X_TIM2
bool "TIM2"
default n
config STR71X_TIM3
bool "TIM3"
default n
config STR71X_UART0
bool "UART0"
default n
select STR71X_GPIO0
select ARCH_HAVE_UART0
config STR71X_UART1
bool "UART1"
default n
select STR71X_GPIO0
select ARCH_HAVE_UART1
config STR71X_UART2
bool "UART2"
default n
select STR71X_GPIO0
select ARCH_HAVE_UART2
config STR71X_UART3
bool "UART3"
default n
select STR71X_GPIO0
select ARCH_HAVE_UART3
config STR71X_USB
bool "USB"
default n
select USBDEV
config STR71X_XTI
bool "XTI"
endmenu #STR71x Peripheral Selections
config STR71X_DISABLE_PERIPHINIT
bool "Disable peripheral interrupts"
default n
menu "STR71x EMI Configuration"
config STR71X_BANK0
bool "Bank 0"
default n
select STR71X_HAVE_EXTMEM
if STR71X_BANK0
config STR71X_BANK0_SIZE
int "Bank 0 size"
default 16
---help---
The only valid options are 8 and 16
config STR71X_BANK0_WAITSTATES
int "Bank 0 wait states"
default 0
range 0 15
endif # STR71X_BANK0
config STR71X_BANK1
bool "Bank 1"
default n
select STR71X_HAVE_EXTMEM
if STR71X_BANK1
config STR71X_BANK1_SIZE
int "Bank 1 size"
default 16
---help---
The only valid options are 8 and 16
config STR71X_BANK1_WAITSTATES
int "Bank 1 wait states"
default 0
range 0 15
endif # STR71X_BANK1
config STR71X_BANK2
bool "Bank 2"
default n
select STR71X_HAVE_EXTMEM
if STR71X_BANK2
config STR71X_BANK2_SIZE
int "Bank 2 size"
default 16
---help---
The only valid options are 8 and 16
config STR71X_BANK2_WAITSTATES
int "Bank 2 wait states"
default 0
range 0 15
endif # STR71X_BANK2
config STR71X_BANK3
bool "Bank 3"
default n
select STR71X_HAVE_EXTMEM
if STR71X_BANK3
config STR71X_BANK3_SIZE
int "Bank 3 size"
default 16
---help---
The only valid options are 8 and 16
config STR71X_BANK3_WAITSTATES
int "Bank 3 wait states"
default 0
range 0 15
endif # STR71X_BANK3
config STR71X_HAVE_EXTMEM
bool
default n
config STR71X_BIGEXTMEM
bool "Big external memory"
default n
depends on STR71X_HAVE_EXTMEM
---help---
Needed if the address space is > 1MB
endmenu # STR71x EMI Configuration

View File

@ -45,18 +45,14 @@ COBJS = $(CSRCS:.c=$(OBJEXT))
SRCS = $(ASRCS) $(CSRCS)
OBJS = $(AOBJS) $(COBJS)
ARCH_SRCDIR = $(TOPDIR)/arch/$(CONFIG_ARCH)/src
ARCH_SRCDIR = $(TOPDIR)$(DELIM)arch$(DELIM)$(CONFIG_ARCH)$(DELIM)src
ifeq ($(CONFIG_WINDOWS_NATIVE),y)
CFLAGS += -I$(ARCH_SRCDIR)\chip -I$(ARCH_SRCDIR)\common -I$(ARCH_SRCDIR)\arm
else
ifeq ($(WINTOOL),y)
CFLAGS += -I "${shell cygpath -w $(ARCH_SRCDIR)/chip}" \
-I "${shell cygpath -w $(ARCH_SRCDIR)/common}" \
-I "${shell cygpath -w $(ARCH_SRCDIR)/arm}"
else
CFLAGS += -I$(ARCH_SRCDIR)/chip -I$(ARCH_SRCDIR)/common -I$(ARCH_SRCDIR)/arm
endif
CFLAGS += -I $(ARCH_SRCDIR)$(DELIM)chip -I $(ARCH_SRCDIR)$(DELIM)common -I $(ARCH_SRCDIR)$(DELIM)arm
endif
all: libboard$(LIBEXT)

View File

@ -377,8 +377,19 @@ Configurations:
nettest:
This configuration directory may be used to enable networking using the
an Microchip ENC28J60 SPI ethernet module (see above for connection to
STR-P711.
an Microchip ENC28J60 SPI Ethernet module (see above for connection to
STR-P711).
NOTES:
1. This configuration uses the mconf-based configuration tool. To
change this configurations using that tool, you should:
a. Build and install the kconfig-mconf tool. See nuttx/README.txt
and misc/tools/
b. Execute 'make menuconfig' in nuttx/ in order to start the
reconfiguration process.
nsh:
Configures the NuttShell (nsh) located at examples/nsh. The

View File

@ -33,16 +33,26 @@
#
##############################################################################
include ${TOPDIR}/.config
include ${TOPDIR}/.configinclude ${TOPDIR}/.config
include ${TOPDIR}/tools/Config.mk
include ${TOPDIR}/arch/arm/src/arm/Toolchain.defs
# The default value for CROSSDEV can be overridden from the make command line:
# make -- Will build for the NuttX buildroot toolchain
# make CROSSDEV=arm-eabi- -- Will build for the devkitARM toolchain
# make CROSSDEV=arm-none-eabi- -- Will build for the CodeSourcery toolchain
# make CROSSDEV=arm-nuttx-elf- -- Will build for the NuttX buildroot toolchain
ifeq ($(WINTOOL),y)
# Windows-native toolchains
DIRLINK = $(TOPDIR)/tools/copydir.sh
DIRUNLINK = $(TOPDIR)/tools/unlink.sh
MKDEP = $(TOPDIR)/tools/mknulldeps.sh
ARCHINCLUDES = -I. -isystem "${shell cygpath -w $(TOPDIR)/include}"
ARCHXXINCLUDES = -I. -isystem "${shell cygpath -w $(TOPDIR)/include}" -isystem "${shell cygpath -w $(TOPDIR)/include/cxx}"
ARCHSCRIPT = -T "${shell cygpath -w $(TOPDIR)/configs/$(CONFIG_ARCH_BOARD)/scripts/ld.script}"
else
# Linux/Cygwin-native toolchain
MKDEP = $(TOPDIR)/tools/mkdeps.sh
ARCHINCLUDES = -I. -isystem $(TOPDIR)/include
ARCHXXINCLUDES = -I. -isystem $(TOPDIR)/include -isystem $(TOPDIR)/include/cxx
ARCHSCRIPT = -T$(TOPDIR)/configs/$(CONFIG_ARCH_BOARD)/scripts/ld.script
endif
CROSSDEV = arm-nuttx-elf-
CC = $(CROSSDEV)gcc
CXX = $(CROSSDEV)g++
CPP = $(CROSSDEV)gcc -E
@ -52,8 +62,6 @@ NM = $(CROSSDEV)nm
OBJCOPY = $(CROSSDEV)objcopy
OBJDUMP = $(CROSSDEV)objdump
HOSTOS = ${shell uname -o 2>/dev/null || echo "Other"}
ARCHCCVERSION = ${shell $(CC) -v 2>&1 | sed -n '/^gcc version/p' | sed -e 's/^gcc version \([0-9\.]\)/\1/g' -e 's/[-\ ].*//g' -e '1q'}
ARCHCCMAJOR = ${shell echo $(ARCHCCVERSION) | cut -d'.' -f1}
@ -63,24 +71,7 @@ OBJCOPYARGS = -R .note -R .note.gnu.build-id -R .comment
endif
endif
ifeq ($(CROSSDEV),arm-nuttx-elf-)
MKDEP = $(TOPDIR)/tools/mkdeps.sh
ARCHINCLUDES = -I. -isystem $(TOPDIR)/include
ARCHXXINCLUDES = -I. -isystem $(TOPDIR)/include -isystem $(TOPDIR)/include/cxx
ARCHSCRIPT = -T$(TOPDIR)/configs/$(CONFIG_ARCH_BOARD)/scripts/ld.script
MAXOPTIMIZATION = -Os
else
WINTOOL = y
DIRLINK = $(TOPDIR)/tools/copydir.sh
DIRUNLINK = $(TOPDIR)/tools/unlink.sh
MKDEP = $(TOPDIR)/tools/mknulldeps.sh
ARCHINCLUDES = -I. -isystem "${shell cygpath -w $(TOPDIR)/include}"
ARCHXXINCLUDES = -I. -isystem "${shell cygpath -w $(TOPDIR)/include}" -isystem "${shell cygpath -w $(TOPDIR)/include/cxx}"
ARCHSCRIPT = -T "${shell cygpath -w $(TOPDIR)/configs/$(CONFIG_ARCH_BOARD)/scripts/ld.script}"
MAXOPTIMIZATION = -O2
endif
ifeq ($(CONFIG_DEBUG_SYMBOLS),y)
ifeq ("${CONFIG_DEBUG}","y")
ARCHOPTIMIZATION = -g
endif
@ -123,13 +114,11 @@ EXEEXT =
ifneq ($(CROSSDEV),arm-nuttx-elf-)
LDFLAGS += -nostartfiles -nodefaultlibs
endif
ifeq ($(CONFIG_DEBUG_SYMBOLS),y)
ifeq ($(CONFIG_DEBUG),y)
LDFLAGS += -g
endif
HOSTCC = gcc
HOSTINCLUDES = -I.
HOSTCFLAGS = -Wall -Wstrict-prototypes -Wshadow -g -pipe
HOSTLDFLAGS =

View File

@ -1,43 +0,0 @@
############################################################################
# configs/olimex-strp711/nettest/appconfig
#
# Copyright (C) 2011 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <gnutt@nuttx.org>
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in
# the documentation and/or other materials provided with the
# distribution.
# 3. Neither the name NuttX nor the names of its contributors may be
# used to endorse or promote products derived from this software
# without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
# OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
#
############################################################################
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/nettest
# Networking support
CONFIGURED_APPS += netutils/uiplib

File diff suppressed because it is too large Load Diff

View File

@ -31,17 +31,42 @@
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
#
##############################################################################
if [ "$(basename $0)" = "setenv.sh" ] ; then
if [ "$_" = "$0" ] ; then
echo "You must source this script, not run it!" 1>&2
exit 1
fi
if [ -z "${PATH_ORIG}" ]; then export PATH_ORIG="${PATH}"; fi
WD=`pwd`
export BUILDROOT_BIN="${WD}/../misc/buildroot/build_arm_nofpu/staging_dir/bin"
export STR41XSCRIPTS="$WD/configs/olimex-strp711/scripts"
export PATH="${BUILDROOT_BIN}:${STR41XSCRIPTS}:/sbin:/usr/sbin:${PATH_ORIG}"
if [ ! -x "setenv.sh" ]; then
echo "This script must be executed from the top-level NuttX build directory"
exit 1
fi
if [ -z "${PATH_ORIG}" ]; then
export PATH_ORIG="${PATH}"
fi
# This is the Cygwin path to the location where I installed the CodeSourcery
# toolchain under windows. You will also have to edit this if you install
# the CodeSourcery toolchain in any other location
# export TOOLCHAIN_BIN="/cygdrive/c/Program Files (x86)/CodeSourcery/Sourcery G++ Lite/bin"
# export TOOLCHAIN_BIN="/cygdrive/c/Program Files (x86)/CodeSourcery/Sourcery_CodeBench_Lite_for_ARM_EABI/bin"
# These are the Cygwin paths to the locations where I installed the Atollic
# toolchain under windows. You will also have to edit this if you install
# the Atollic toolchain in any other location. /usr/bin is added before
# the Atollic bin path because there is are binaries named gcc.exe and g++.exe
# at those locations as well.
#export TOOLCHAIN_BIN="/usr/bin:/cygdrive/c/Program Files (x86)/Atollic/TrueSTUDIO for ARM Pro 2.3.0/ARMTools/bin"
#export TOOLCHAIN_BIN="/usr/bin:/cygdrive/c/Program Files (x86)/Atollic/TrueSTUDIO for STMicroelectronics STM32 Lite 2.3.0/ARMTools/bin"
# This is the Cygwin path to the location where I build the buildroot
# toolchain.
export TOOLCHAIN_BIN="${WD}/../misc/buildroot/build_arm_nofpu/staging_dir/bin"
# Add the path to the toolchain to the PATH varialble
export PATH="${TOOLCHAIN_BIN}:/sbin:/usr/sbin:${PATH_ORIG}"
echo "PATH : ${PATH}"