configs/rgmp/arm/default: Configuration converted to use the kconfig-frontends tools

This commit is contained in:
Gregory Nutt
2014-03-06 11:19:05 -06:00
parent 60f5acf8da
commit 29a4ca8f08
9 changed files with 652 additions and 239 deletions
+2
View File
@@ -6910,3 +6910,5 @@
kconfig-frontends tools (2014-3-6)
* configs/pjrc-8051: Configuration converted to use the kconfig-frontends
tools (2014-3-6)
* configs/rgmp/arm/default: Configuration converted to use the
kconfig-frontends tools (2014-3-6)
+17
View File
@@ -246,6 +246,23 @@ endmenu # Binary Output Formats
menu "Customize Header Files"
config ARCH_STDINT_H
bool "stdint.h"
default n
---help---
The stdint.h header file can be found at nuttx/include/stdint.h.
However, that header includes logic to redirect the inclusion of an
architecture specific header file like:
#ifdef CONFIG_ARCH_STDINT_H
# include <arch/stdint.h>
#else
...
#endif
Recall that that include path, include/arch, is a symbolic link and
will refer to a version of stdint.h at nuttx/arch/<architecture>/include/stdint.h.
config ARCH_STDBOOL_H
bool "stdbool.h"
default n
+4
View File
@@ -2,3 +2,7 @@
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#
if ARCH_BOARD_RGMP
endif # ARCH_BOARD_RGMP
+2 -5
View File
@@ -1,7 +1,7 @@
RGMP README File
================
RGMP stands for RTOS and GPOS on Multi-Processor. RGMP is a project for
RGMP stands for RTOS and GPOS on Multi-Processor. RGMP is a project for
running GPOS and RTOS simultaneously on multi-processor platforms. You can
port your favorite RTOS to RGMP together with an unmodified Linux to form a
hybrid operating system. This makes your application able to use both RTOS
@@ -80,7 +80,7 @@ Requirements:
1. Get your running Linux kernel header under /usr/src/linux-headers-$(uname -r)
directory.
2. Following the Ubuntu steps begin at 3.
2. Following the Ubuntu steps begin at 3.
Note: You can configure the RGMP to find Linux kernel header in a different
place and install RGMP to a different place. See information printed
@@ -88,6 +88,3 @@ Note: You can configure the RGMP to find Linux kernel header in a different
$ cd <rgmp-dir>
$ ./configure -h
-39
View File
@@ -1,39 +0,0 @@
############################################################################
# configs/sim/default/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/rgmp
File diff suppressed because it is too large Load Diff
+8
View File
@@ -245,6 +245,14 @@ config NET_VNET
bool "VNET support"
default n
if NET_VNET
config VNET_NINTERFACES
int "Number of VNET interfaces"
default 1
endif # NET_VNET
if ARCH_HAVE_PHY
comment "External Ethernet PHY Device Support"
+6 -3
View File
@@ -129,7 +129,7 @@ config EXECFUNCS_NSYMBOLS
symbols in that table. This selection provides the number of
symbols in the symbol table.
endif
endif # LIBC_EXECFUNCS
config POSIX_SPAWN_PROXY_STACKSIZE
int "Spawn Stack Size"
@@ -227,6 +227,7 @@ config ARCH_OPTIMIZED_FUNCTIONS
system performance.
if ARCH_OPTIMIZED_FUNCTIONS
config ARCH_MEMCPY
bool "memcpy()"
default n
@@ -244,6 +245,7 @@ config MEMCPY_VIK
size. See licensing information in the top-level COPYING file.
if MEMCPY_VIK
config MEMCPY_PRE_INC_PTRS
bool "Pre-increment pointers"
default n
@@ -264,7 +266,7 @@ config MEMCPY_64BIT
Compiles memcpy() for architectures that suppport 64-bit operations
efficiently.
endif
endif # MEMCPY_VIK
config ARCH_MEMCMP
bool "memcmp()"
@@ -352,7 +354,7 @@ config ARCH_BZERO
Select this option if the architecture provides an optimized version
of bzero().
endif
endif # ARCH_OPTIMIZED_FUNCTIONS
comment "Non-standard Library Support"
@@ -380,6 +382,7 @@ config SCHED_HPWORK
as the "bottom half" for driver interrupt handling.
if SCHED_HPWORK
config SCHED_WORKPRIORITY
int "High priority worker thread priority"
default 192
+4
View File
@@ -70,6 +70,10 @@ static const char *dequote_list[] =
"CONFIG_PASS1_OBJECT", /* Pass1 build object */
"CONFIG_DEBUG_OPTLEVEL", /* Custom debug level */
/* RGMP */
"CONFIG_RGMP_SUBARCH", /* RGMP sub-architecture */
/* NxWidgets/NxWM */
"CONFIG_NXWM_BACKGROUND_IMAGE", /* Name of bitmap image class */