mirror of
https://github.com/apache/nuttx.git
synced 2026-06-04 23:03:27 +08:00
Prep for 6.0 release
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3408 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
+5
-6
@@ -168,8 +168,8 @@ defconfig -- This is a configuration file similar to the Linux
|
|||||||
|
|
||||||
Building application code:
|
Building application code:
|
||||||
|
|
||||||
CONFIG_APP_DIR - Identifies the directory that builds the
|
CONFIG_APPS_DIR - Identifies the directory that builds the
|
||||||
application to link with NuttX. This symbol must be assigned
|
application to link with NuttX. Default: ../apps This symbol must be assigned
|
||||||
to the path to the application build directory *relative* to
|
to the path to the application build directory *relative* to
|
||||||
the NuttX top build direcory. If you had an application
|
the NuttX top build direcory. If you had an application
|
||||||
directory and the NuttX directory each in separate directory
|
directory and the NuttX directory each in separate directory
|
||||||
@@ -183,12 +183,12 @@ defconfig -- This is a configuration file similar to the Linux
|
|||||||
|
|
|
|
||||||
`- Makefile
|
`- Makefile
|
||||||
|
|
||||||
Then you would set CONFIG_APP_DIR=../application.
|
Then you would set CONFIG_APPS_DIR=../application.
|
||||||
|
|
||||||
The application direction must contain Makefile and this make
|
The application direction must contain Makefile and this make
|
||||||
file must support the following targets:
|
file must support the following targets:
|
||||||
|
|
||||||
- libapp$(LIBEXT) (usually libapp.a). libapp.a is a static
|
- libapps$(LIBEXT) (usually libapps.a). libapps.a is a static
|
||||||
library ( an archive) that contains all of application object
|
library ( an archive) that contains all of application object
|
||||||
files.
|
files.
|
||||||
- clean. Do whatever is appropriate to clean the application
|
- clean. Do whatever is appropriate to clean the application
|
||||||
@@ -201,7 +201,7 @@ defconfig -- This is a configuration file similar to the Linux
|
|||||||
|
|
||||||
When this application is invoked it will receive the setting TOPDIR like:
|
When this application is invoked it will receive the setting TOPDIR like:
|
||||||
|
|
||||||
$(MAKE) -C $(CONFIG_APP_DIR) TOPDIR="$(TOPDIR)" <target>
|
$(MAKE) -C $(CONFIG_APPS_DIR) TOPDIR="$(TOPDIR)" <target>
|
||||||
|
|
||||||
TOPDIR is the full path to the NuttX directory. It can be used, for
|
TOPDIR is the full path to the NuttX directory. It can be used, for
|
||||||
example, to include makefile fragments (e.g., .config or Make.defs)
|
example, to include makefile fragments (e.g., .config or Make.defs)
|
||||||
@@ -1108,7 +1108,6 @@ And if configs/<board-name>/<config-dir>/appconfig exists in the board
|
|||||||
configuration directory:
|
configuration directory:
|
||||||
|
|
||||||
Copy configs/<board-name>/<config-dir>/appconfig to <app-dir>/.config
|
Copy configs/<board-name>/<config-dir>/appconfig to <app-dir>/.config
|
||||||
echo "CONFIG_BUILTIN_APPS=y" >> "${TOPDIR}/.config"
|
|
||||||
echo "APPS_LOC=\"<app-dir>\"" >> "${TOPDIR}/.config"
|
echo "APPS_LOC=\"<app-dir>\"" >> "${TOPDIR}/.config"
|
||||||
|
|
||||||
tools/configure.sh
|
tools/configure.sh
|
||||||
|
|||||||
@@ -216,8 +216,8 @@ CONFIG_HAVE_LIBM=n
|
|||||||
#
|
#
|
||||||
# General OS setup
|
# General OS setup
|
||||||
#
|
#
|
||||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||||
# that builds the application to link with NuttX.
|
# that builds the application to link with NuttX. Default: ../apps
|
||||||
# CONFIG_DEBUG - enables built-in debug options
|
# CONFIG_DEBUG - enables built-in debug options
|
||||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||||
@@ -305,7 +305,7 @@ CONFIG_HAVE_LIBM=n
|
|||||||
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
||||||
# the worker thread. Default: 4
|
# the worker thread. Default: 4
|
||||||
#
|
#
|
||||||
#CONFIG_APP_DIR=
|
#CONFIG_APPS_DIR=
|
||||||
CONFIG_DEBUG=n
|
CONFIG_DEBUG=n
|
||||||
CONFIG_DEBUG_VERBOSE=n
|
CONFIG_DEBUG_VERBOSE=n
|
||||||
CONFIG_DEBUG_SYMBOLS=n
|
CONFIG_DEBUG_SYMBOLS=n
|
||||||
|
|||||||
@@ -216,8 +216,8 @@ CONFIG_HAVE_LIBM=n
|
|||||||
#
|
#
|
||||||
# General OS setup
|
# General OS setup
|
||||||
#
|
#
|
||||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||||
# that builds the application to link with NuttX.
|
# that builds the application to link with NuttX. Default: ../apps
|
||||||
# CONFIG_DEBUG - enables built-in debug options
|
# CONFIG_DEBUG - enables built-in debug options
|
||||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||||
@@ -305,7 +305,7 @@ CONFIG_HAVE_LIBM=n
|
|||||||
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
||||||
# the worker thread. Default: 4
|
# the worker thread. Default: 4
|
||||||
#
|
#
|
||||||
#CONFIG_APP_DIR=
|
#CONFIG_APPS_DIR=
|
||||||
CONFIG_DEBUG=n
|
CONFIG_DEBUG=n
|
||||||
CONFIG_DEBUG_VERBOSE=n
|
CONFIG_DEBUG_VERBOSE=n
|
||||||
CONFIG_DEBUG_SYMBOLS=n
|
CONFIG_DEBUG_SYMBOLS=n
|
||||||
|
|||||||
@@ -135,8 +135,8 @@ CONFIG_HAVE_LIBM=n
|
|||||||
#
|
#
|
||||||
# General OS setup
|
# General OS setup
|
||||||
#
|
#
|
||||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||||
# that builds the application to link with NuttX.
|
# that builds the application to link with NuttX. Default: ../apps
|
||||||
# CONFIG_DEBUG - enables built-in debug options
|
# CONFIG_DEBUG - enables built-in debug options
|
||||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||||
@@ -200,7 +200,7 @@ CONFIG_HAVE_LIBM=n
|
|||||||
# This format will support execution of NuttX binaries located
|
# This format will support execution of NuttX binaries located
|
||||||
# in a ROMFS filesystem (see examples/nxflat).
|
# in a ROMFS filesystem (see examples/nxflat).
|
||||||
#
|
#
|
||||||
#CONFIG_APP_DIR=
|
#CONFIG_APPS_DIR=
|
||||||
CONFIG_DEBUG=n
|
CONFIG_DEBUG=n
|
||||||
CONFIG_DEBUG_VERBOSE=n
|
CONFIG_DEBUG_VERBOSE=n
|
||||||
CONFIG_DEBUG_SYMBOLS=n
|
CONFIG_DEBUG_SYMBOLS=n
|
||||||
|
|||||||
@@ -135,8 +135,8 @@ CONFIG_NET_C5471_BASET10=n
|
|||||||
#
|
#
|
||||||
# General OS setup
|
# General OS setup
|
||||||
#
|
#
|
||||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||||
# that builds the application to link with NuttX.
|
# that builds the application to link with NuttX. Default: ../apps
|
||||||
# CONFIG_DEBUG - enables built-in debug options
|
# CONFIG_DEBUG - enables built-in debug options
|
||||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||||
@@ -200,7 +200,7 @@ CONFIG_NET_C5471_BASET10=n
|
|||||||
# This format will support execution of NuttX binaries located
|
# This format will support execution of NuttX binaries located
|
||||||
# in a ROMFS filesystem (see examples/nxflat).
|
# in a ROMFS filesystem (see examples/nxflat).
|
||||||
#
|
#
|
||||||
#CONFIG_APP_DIR=
|
#CONFIG_APPS_DIR=
|
||||||
CONFIG_DEBUG=n
|
CONFIG_DEBUG=n
|
||||||
CONFIG_DEBUG_VERBOSE=n
|
CONFIG_DEBUG_VERBOSE=n
|
||||||
CONFIG_DEBUG_SYMBOLS=n
|
CONFIG_DEBUG_SYMBOLS=n
|
||||||
|
|||||||
@@ -135,8 +135,8 @@ CONFIG_HAVE_LIBM=n
|
|||||||
#
|
#
|
||||||
# General OS setup
|
# General OS setup
|
||||||
#
|
#
|
||||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||||
# that builds the application to link with NuttX.
|
# that builds the application to link with NuttX. Default: ../apps
|
||||||
# CONFIG_DEBUG - enables built-in debug options
|
# CONFIG_DEBUG - enables built-in debug options
|
||||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||||
@@ -200,7 +200,7 @@ CONFIG_HAVE_LIBM=n
|
|||||||
# This format will support execution of NuttX binaries located
|
# This format will support execution of NuttX binaries located
|
||||||
# in a ROMFS filesystem (see examples/nxflat).
|
# in a ROMFS filesystem (see examples/nxflat).
|
||||||
#
|
#
|
||||||
#CONFIG_APP_DIR=
|
#CONFIG_APPS_DIR=
|
||||||
CONFIG_DEBUG=n
|
CONFIG_DEBUG=n
|
||||||
CONFIG_DEBUG_VERBOSE=n
|
CONFIG_DEBUG_VERBOSE=n
|
||||||
CONFIG_DEBUG_SYMBOLS=n
|
CONFIG_DEBUG_SYMBOLS=n
|
||||||
|
|||||||
@@ -135,8 +135,8 @@ CONFIG_HAVE_LIBM=n
|
|||||||
#
|
#
|
||||||
# General OS setup
|
# General OS setup
|
||||||
#
|
#
|
||||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||||
# that builds the application to link with NuttX.
|
# that builds the application to link with NuttX. Default: ../apps
|
||||||
# CONFIG_DEBUG - enables built-in debug options
|
# CONFIG_DEBUG - enables built-in debug options
|
||||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||||
@@ -200,7 +200,7 @@ CONFIG_HAVE_LIBM=n
|
|||||||
# This format will support execution of NuttX binaries located
|
# This format will support execution of NuttX binaries located
|
||||||
# in a ROMFS filesystem (see examples/nxflat).
|
# in a ROMFS filesystem (see examples/nxflat).
|
||||||
#
|
#
|
||||||
#CONFIG_APP_DIR=
|
#CONFIG_APPS_DIR=
|
||||||
CONFIG_DEBUG=n
|
CONFIG_DEBUG=n
|
||||||
CONFIG_DEBUG_VERBOSE=n
|
CONFIG_DEBUG_VERBOSE=n
|
||||||
CONFIG_DEBUG_SYMBOLS=n
|
CONFIG_DEBUG_SYMBOLS=n
|
||||||
|
|||||||
@@ -194,8 +194,8 @@ CONFIG_PASS1_OBJECT=init.r
|
|||||||
#
|
#
|
||||||
# General OS setup
|
# General OS setup
|
||||||
#
|
#
|
||||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||||
# that builds the application to link with NuttX.
|
# that builds the application to link with NuttX. Default: ../apps
|
||||||
# CONFIG_DEBUG - enables built-in debug options
|
# CONFIG_DEBUG - enables built-in debug options
|
||||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||||
@@ -283,7 +283,7 @@ CONFIG_PASS1_OBJECT=init.r
|
|||||||
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
||||||
# the worker thread. Default: 4
|
# the worker thread. Default: 4
|
||||||
#
|
#
|
||||||
#CONFIG_APP_DIR=
|
#CONFIG_APPS_DIR=
|
||||||
CONFIG_DEBUG=n
|
CONFIG_DEBUG=n
|
||||||
CONFIG_DEBUG_VERBOSE=n
|
CONFIG_DEBUG_VERBOSE=n
|
||||||
CONFIG_DEBUG_SYMBOLS=n
|
CONFIG_DEBUG_SYMBOLS=n
|
||||||
|
|||||||
@@ -234,8 +234,8 @@ CONFIG_HAVE_LIBM=n
|
|||||||
#
|
#
|
||||||
# General OS setup
|
# General OS setup
|
||||||
#
|
#
|
||||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||||
# that builds the application to link with NuttX.
|
# that builds the application to link with NuttX. Default: ../apps
|
||||||
# CONFIG_DEBUG - enables built-in debug options
|
# CONFIG_DEBUG - enables built-in debug options
|
||||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||||
@@ -323,7 +323,7 @@ CONFIG_HAVE_LIBM=n
|
|||||||
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
||||||
# the worker thread. Default: 4
|
# the worker thread. Default: 4
|
||||||
#
|
#
|
||||||
#CONFIG_APP_DIR=
|
#CONFIG_APPS_DIR=
|
||||||
CONFIG_DEBUG=n
|
CONFIG_DEBUG=n
|
||||||
CONFIG_DEBUG_VERBOSE=n
|
CONFIG_DEBUG_VERBOSE=n
|
||||||
CONFIG_DEBUG_SYMBOLS=n
|
CONFIG_DEBUG_SYMBOLS=n
|
||||||
|
|||||||
@@ -236,8 +236,8 @@ CONFIG_HAVE_LIBM=n
|
|||||||
#
|
#
|
||||||
# General OS setup
|
# General OS setup
|
||||||
#
|
#
|
||||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||||
# that builds the application to link with NuttX.
|
# that builds the application to link with NuttX. Default: ../apps
|
||||||
# CONFIG_DEBUG - enables built-in debug options
|
# CONFIG_DEBUG - enables built-in debug options
|
||||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||||
@@ -327,7 +327,7 @@ CONFIG_HAVE_LIBM=n
|
|||||||
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
||||||
# the worker thread. Default: 4
|
# the worker thread. Default: 4
|
||||||
#
|
#
|
||||||
#CONFIG_APP_DIR=
|
#CONFIG_APPS_DIR=
|
||||||
CONFIG_DEBUG=n
|
CONFIG_DEBUG=n
|
||||||
CONFIG_DEBUG_VERBOSE=n
|
CONFIG_DEBUG_VERBOSE=n
|
||||||
CONFIG_DEBUG_SYMBOLS=n
|
CONFIG_DEBUG_SYMBOLS=n
|
||||||
|
|||||||
@@ -230,8 +230,8 @@ CONFIG_HAVE_LIBM=n
|
|||||||
#
|
#
|
||||||
# General OS setup
|
# General OS setup
|
||||||
#
|
#
|
||||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||||
# that builds the application to link with NuttX.
|
# that builds the application to link with NuttX. Default: ../apps
|
||||||
# CONFIG_DEBUG - enables built-in debug options
|
# CONFIG_DEBUG - enables built-in debug options
|
||||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||||
@@ -319,7 +319,7 @@ CONFIG_HAVE_LIBM=n
|
|||||||
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
||||||
# the worker thread. Default: 4
|
# the worker thread. Default: 4
|
||||||
#
|
#
|
||||||
#CONFIG_APP_DIR=
|
#CONFIG_APPS_DIR=
|
||||||
CONFIG_DEBUG=n
|
CONFIG_DEBUG=n
|
||||||
CONFIG_DEBUG_VERBOSE=n
|
CONFIG_DEBUG_VERBOSE=n
|
||||||
CONFIG_DEBUG_SYMBOLS=n
|
CONFIG_DEBUG_SYMBOLS=n
|
||||||
|
|||||||
@@ -235,8 +235,8 @@ CONFIG_HAVE_LIBM=n
|
|||||||
#
|
#
|
||||||
# General OS setup
|
# General OS setup
|
||||||
#
|
#
|
||||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||||
# that builds the application to link with NuttX.
|
# that builds the application to link with NuttX. Default: ../apps
|
||||||
# CONFIG_DEBUG - enables built-in debug options
|
# CONFIG_DEBUG - enables built-in debug options
|
||||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||||
@@ -326,7 +326,7 @@ CONFIG_HAVE_LIBM=n
|
|||||||
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
||||||
# the worker thread. Default: 4
|
# the worker thread. Default: 4
|
||||||
#
|
#
|
||||||
#CONFIG_APP_DIR=
|
#CONFIG_APPS_DIR=
|
||||||
CONFIG_DEBUG=n
|
CONFIG_DEBUG=n
|
||||||
CONFIG_DEBUG_VERBOSE=n
|
CONFIG_DEBUG_VERBOSE=n
|
||||||
CONFIG_DEBUG_SYMBOLS=n
|
CONFIG_DEBUG_SYMBOLS=n
|
||||||
|
|||||||
@@ -44,18 +44,18 @@ PASS1_LIBBOARD = $(PASS1_BOARDDIR)/libboard$(LIBEXT)
|
|||||||
|
|
||||||
# Where is the application library?
|
# Where is the application library?
|
||||||
|
|
||||||
ifneq ($(CONFIG_APP_DIR),)
|
ifneq ($(CONFIG_APPS_DIR),)
|
||||||
PASS1_LIBAPP = $(CONFIG_APP_DIR)/libapp$(LIBEXT)
|
PASS1_LIBAPPS = $(CONFIG_APPS_DIR)/libapps$(LIBEXT)
|
||||||
else
|
else
|
||||||
ifneq ($(APPDIR),)
|
ifneq ($(APPDIR),)
|
||||||
PASS1_LIBAPP = $(APPDIR)/libapps$(LIBEXT)
|
PASS1_LIBAPPS = $(APPDIR)/libapps$(LIBEXT)
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# Remove the application library (libapp) from the list of libraries. Add
|
# Remove the application library (libapps) from the list of libraries. Add
|
||||||
# the boad library (liboard)
|
# the boad library (liboard)
|
||||||
|
|
||||||
PASS1_LINKLIBS = $(filter-out $(PASS1_LIBAPP),$(LINKLIBS))
|
PASS1_LINKLIBS = $(filter-out $(PASS1_LIBAPPS),$(LINKLIBS))
|
||||||
PASS1_LINKLIBS += $(PASS1_LIBBOARD)
|
PASS1_LINKLIBS += $(PASS1_LIBBOARD)
|
||||||
|
|
||||||
# Get the paths to the libraries and the links script path in format that
|
# Get the paths to the libraries and the links script path in format that
|
||||||
|
|||||||
@@ -201,8 +201,8 @@ CONFIG_HAVE_LIBM=n
|
|||||||
#
|
#
|
||||||
# General OS setup
|
# General OS setup
|
||||||
#
|
#
|
||||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||||
# that builds the application to link with NuttX.
|
# that builds the application to link with NuttX. Default: ../apps
|
||||||
# CONFIG_DEBUG - enables built-in debug options
|
# CONFIG_DEBUG - enables built-in debug options
|
||||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||||
@@ -290,7 +290,7 @@ CONFIG_HAVE_LIBM=n
|
|||||||
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
||||||
# the worker thread. Default: 4
|
# the worker thread. Default: 4
|
||||||
#
|
#
|
||||||
#CONFIG_APP_DIR=
|
#CONFIG_APPS_DIR=
|
||||||
CONFIG_DEBUG=n
|
CONFIG_DEBUG=n
|
||||||
CONFIG_DEBUG_VERBOSE=n
|
CONFIG_DEBUG_VERBOSE=n
|
||||||
CONFIG_DEBUG_SYMBOLS=n
|
CONFIG_DEBUG_SYMBOLS=n
|
||||||
|
|||||||
@@ -201,8 +201,8 @@ CONFIG_HAVE_LIBM=n
|
|||||||
#
|
#
|
||||||
# General OS setup
|
# General OS setup
|
||||||
#
|
#
|
||||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||||
# that builds the application to link with NuttX.
|
# that builds the application to link with NuttX. Default: ../apps
|
||||||
# CONFIG_DEBUG - enables built-in debug options
|
# CONFIG_DEBUG - enables built-in debug options
|
||||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||||
@@ -290,7 +290,7 @@ CONFIG_HAVE_LIBM=n
|
|||||||
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
||||||
# the worker thread. Default: 4
|
# the worker thread. Default: 4
|
||||||
#
|
#
|
||||||
#CONFIG_APP_DIR=
|
#CONFIG_APPS_DIR=
|
||||||
CONFIG_DEBUG=n
|
CONFIG_DEBUG=n
|
||||||
CONFIG_DEBUG_VERBOSE=n
|
CONFIG_DEBUG_VERBOSE=n
|
||||||
CONFIG_DEBUG_SYMBOLS=n
|
CONFIG_DEBUG_SYMBOLS=n
|
||||||
|
|||||||
@@ -208,8 +208,8 @@ CONFIG_PASS1_OBJECT=locked.r
|
|||||||
#
|
#
|
||||||
# General OS setup
|
# General OS setup
|
||||||
#
|
#
|
||||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||||
# that builds the application to link with NuttX.
|
# that builds the application to link with NuttX. Default: ../apps
|
||||||
# CONFIG_DEBUG - enables built-in debug options
|
# CONFIG_DEBUG - enables built-in debug options
|
||||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||||
@@ -297,7 +297,7 @@ CONFIG_PASS1_OBJECT=locked.r
|
|||||||
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
||||||
# the worker thread. Default: 4
|
# the worker thread. Default: 4
|
||||||
#
|
#
|
||||||
#CONFIG_APP_DIR=
|
#CONFIG_APPS_DIR=
|
||||||
CONFIG_DEBUG=n
|
CONFIG_DEBUG=n
|
||||||
CONFIG_DEBUG_VERBOSE=n
|
CONFIG_DEBUG_VERBOSE=n
|
||||||
CONFIG_DEBUG_SYMBOLS=n
|
CONFIG_DEBUG_SYMBOLS=n
|
||||||
|
|||||||
@@ -201,8 +201,8 @@ CONFIG_HAVE_LIBM=n
|
|||||||
#
|
#
|
||||||
# General OS setup
|
# General OS setup
|
||||||
#
|
#
|
||||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||||
# that builds the application to link with NuttX.
|
# that builds the application to link with NuttX. Default: ../apps
|
||||||
# CONFIG_DEBUG - enables built-in debug options
|
# CONFIG_DEBUG - enables built-in debug options
|
||||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||||
@@ -290,7 +290,7 @@ CONFIG_HAVE_LIBM=n
|
|||||||
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
||||||
# the worker thread. Default: 4
|
# the worker thread. Default: 4
|
||||||
#
|
#
|
||||||
#CONFIG_APP_DIR=
|
#CONFIG_APPS_DIR=
|
||||||
CONFIG_DEBUG=n
|
CONFIG_DEBUG=n
|
||||||
CONFIG_DEBUG_VERBOSE=n
|
CONFIG_DEBUG_VERBOSE=n
|
||||||
CONFIG_DEBUG_FS=n
|
CONFIG_DEBUG_FS=n
|
||||||
|
|||||||
@@ -201,8 +201,8 @@ CONFIG_HAVE_LIBM=n
|
|||||||
#
|
#
|
||||||
# General OS setup
|
# General OS setup
|
||||||
#
|
#
|
||||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||||
# that builds the application to link with NuttX.
|
# that builds the application to link with NuttX. Default: ../apps
|
||||||
# CONFIG_DEBUG - enables built-in debug options
|
# CONFIG_DEBUG - enables built-in debug options
|
||||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||||
@@ -290,7 +290,7 @@ CONFIG_HAVE_LIBM=n
|
|||||||
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
||||||
# the worker thread. Default: 4
|
# the worker thread. Default: 4
|
||||||
#
|
#
|
||||||
#CONFIG_APP_DIR=
|
#CONFIG_APPS_DIR=
|
||||||
CONFIG_DEBUG=n
|
CONFIG_DEBUG=n
|
||||||
CONFIG_DEBUG_VERBOSE=n
|
CONFIG_DEBUG_VERBOSE=n
|
||||||
CONFIG_DEBUG_FS=n
|
CONFIG_DEBUG_FS=n
|
||||||
|
|||||||
@@ -203,8 +203,8 @@ CONFIG_HAVE_LIBM=n
|
|||||||
#
|
#
|
||||||
# General OS setup
|
# General OS setup
|
||||||
#
|
#
|
||||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||||
# that builds the application to link with NuttX.
|
# that builds the application to link with NuttX. Default: ../apps
|
||||||
# CONFIG_DEBUG - enables built-in debug options
|
# CONFIG_DEBUG - enables built-in debug options
|
||||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||||
@@ -268,7 +268,7 @@ CONFIG_HAVE_LIBM=n
|
|||||||
# This format will support execution of NuttX binaries located
|
# This format will support execution of NuttX binaries located
|
||||||
# in a ROMFS filesystem (see examples/nxflat).
|
# in a ROMFS filesystem (see examples/nxflat).
|
||||||
#
|
#
|
||||||
#CONFIG_APP_DIR=
|
#CONFIG_APPS_DIR=
|
||||||
CONFIG_DEBUG=n
|
CONFIG_DEBUG=n
|
||||||
CONFIG_DEBUG_VERBOSE=n
|
CONFIG_DEBUG_VERBOSE=n
|
||||||
CONFIG_DEBUG_SYMBOLS=n
|
CONFIG_DEBUG_SYMBOLS=n
|
||||||
|
|||||||
@@ -203,8 +203,8 @@ CONFIG_HAVE_LIBM=n
|
|||||||
#
|
#
|
||||||
# General OS setup
|
# General OS setup
|
||||||
#
|
#
|
||||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||||
# that builds the application to link with NuttX.
|
# that builds the application to link with NuttX. Default: ../apps
|
||||||
# CONFIG_DEBUG - enables built-in debug options
|
# CONFIG_DEBUG - enables built-in debug options
|
||||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||||
@@ -268,7 +268,7 @@ CONFIG_HAVE_LIBM=n
|
|||||||
# This format will support execution of NuttX binaries located
|
# This format will support execution of NuttX binaries located
|
||||||
# in a ROMFS filesystem (see examples/nxflat).
|
# in a ROMFS filesystem (see examples/nxflat).
|
||||||
#
|
#
|
||||||
#CONFIG_APP_DIR=
|
#CONFIG_APPS_DIR=
|
||||||
CONFIG_DEBUG=y
|
CONFIG_DEBUG=y
|
||||||
CONFIG_DEBUG_VERBOSE=n
|
CONFIG_DEBUG_VERBOSE=n
|
||||||
CONFIG_DEBUG_SYMBOLS=n
|
CONFIG_DEBUG_SYMBOLS=n
|
||||||
|
|||||||
@@ -203,8 +203,8 @@ CONFIG_HAVE_LIBM=n
|
|||||||
#
|
#
|
||||||
# General OS setup
|
# General OS setup
|
||||||
#
|
#
|
||||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||||
# that builds the application to link with NuttX.
|
# that builds the application to link with NuttX. Default: ../apps
|
||||||
# CONFIG_DEBUG - enables built-in debug options
|
# CONFIG_DEBUG - enables built-in debug options
|
||||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||||
@@ -268,7 +268,7 @@ CONFIG_HAVE_LIBM=n
|
|||||||
# This format will support execution of NuttX binaries located
|
# This format will support execution of NuttX binaries located
|
||||||
# in a ROMFS filesystem (see examples/nxflat).
|
# in a ROMFS filesystem (see examples/nxflat).
|
||||||
#
|
#
|
||||||
#CONFIG_APP_DIR=
|
#CONFIG_APPS_DIR=
|
||||||
CONFIG_DEBUG=n
|
CONFIG_DEBUG=n
|
||||||
CONFIG_DEBUG_VERBOSE=n
|
CONFIG_DEBUG_VERBOSE=n
|
||||||
CONFIG_DEBUG_SYMBOLS=n
|
CONFIG_DEBUG_SYMBOLS=n
|
||||||
|
|||||||
@@ -203,8 +203,8 @@ CONFIG_HAVE_LIBM=n
|
|||||||
#
|
#
|
||||||
# General OS setup
|
# General OS setup
|
||||||
#
|
#
|
||||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||||
# that builds the application to link with NuttX.
|
# that builds the application to link with NuttX. Default: ../apps
|
||||||
# CONFIG_DEBUG - enables built-in debug options
|
# CONFIG_DEBUG - enables built-in debug options
|
||||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||||
@@ -265,7 +265,7 @@ CONFIG_HAVE_LIBM=n
|
|||||||
# desciptors by task_create() when a new task is started. If
|
# desciptors by task_create() when a new task is started. If
|
||||||
# set, all sockets will appear to be closed in the new task.
|
# set, all sockets will appear to be closed in the new task.
|
||||||
#
|
#
|
||||||
#CONFIG_APP_DIR=
|
#CONFIG_APPS_DIR=
|
||||||
CONFIG_DEBUG=n
|
CONFIG_DEBUG=n
|
||||||
CONFIG_DEBUG_VERBOSE=n
|
CONFIG_DEBUG_VERBOSE=n
|
||||||
CONFIG_DEBUG_SYMBOLS=n
|
CONFIG_DEBUG_SYMBOLS=n
|
||||||
|
|||||||
@@ -203,8 +203,8 @@ CONFIG_HAVE_LIBM=n
|
|||||||
#
|
#
|
||||||
# General OS setup
|
# General OS setup
|
||||||
#
|
#
|
||||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||||
# that builds the application to link with NuttX.
|
# that builds the application to link with NuttX. Default: ../apps
|
||||||
# CONFIG_DEBUG - enables built-in debug options
|
# CONFIG_DEBUG - enables built-in debug options
|
||||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||||
@@ -274,7 +274,7 @@ CONFIG_HAVE_LIBM=n
|
|||||||
# This format will support execution of NuttX binaries located
|
# This format will support execution of NuttX binaries located
|
||||||
# in a ROMFS filesystem (see examples/nxflat).
|
# in a ROMFS filesystem (see examples/nxflat).
|
||||||
#
|
#
|
||||||
#CONFIG_APP_DIR=
|
#CONFIG_APPS_DIR=
|
||||||
CONFIG_DEBUG=n
|
CONFIG_DEBUG=n
|
||||||
CONFIG_DEBUG_VERBOSE=n
|
CONFIG_DEBUG_VERBOSE=n
|
||||||
CONFIG_DEBUG_SYMBOLS=n
|
CONFIG_DEBUG_SYMBOLS=n
|
||||||
|
|||||||
@@ -203,8 +203,8 @@ CONFIG_HAVE_LIBM=n
|
|||||||
#
|
#
|
||||||
# General OS setup
|
# General OS setup
|
||||||
#
|
#
|
||||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||||
# that builds the application to link with NuttX.
|
# that builds the application to link with NuttX. Default: ../apps
|
||||||
# CONFIG_DEBUG - enables built-in debug options
|
# CONFIG_DEBUG - enables built-in debug options
|
||||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||||
@@ -271,7 +271,7 @@ CONFIG_HAVE_LIBM=n
|
|||||||
# desciptors by task_create() when a new task is started. If
|
# desciptors by task_create() when a new task is started. If
|
||||||
# set, all sockets will appear to be closed in the new task.
|
# set, all sockets will appear to be closed in the new task.
|
||||||
#
|
#
|
||||||
#CONFIG_APP_DIR=
|
#CONFIG_APPS_DIR=
|
||||||
CONFIG_DEBUG=n
|
CONFIG_DEBUG=n
|
||||||
CONFIG_DEBUG_VERBOSE=n
|
CONFIG_DEBUG_VERBOSE=n
|
||||||
CONFIG_DEBUG_SYMBOLS=n
|
CONFIG_DEBUG_SYMBOLS=n
|
||||||
|
|||||||
@@ -167,8 +167,8 @@ CONFIG_HAVE_LIBM=n
|
|||||||
#
|
#
|
||||||
# General OS setup
|
# General OS setup
|
||||||
#
|
#
|
||||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||||
# that builds the application to link with NuttX.
|
# that builds the application to link with NuttX. Default: ../apps
|
||||||
# CONFIG_DEBUG - enables built-in debug options
|
# CONFIG_DEBUG - enables built-in debug options
|
||||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||||
@@ -234,7 +234,7 @@ CONFIG_HAVE_LIBM=n
|
|||||||
# desciptors by task_create() when a new task is started. If
|
# desciptors by task_create() when a new task is started. If
|
||||||
# set, all sockets will appear to be closed in the new task.
|
# set, all sockets will appear to be closed in the new task.
|
||||||
#
|
#
|
||||||
#CONFIG_APP_DIR=
|
#CONFIG_APPS_DIR=
|
||||||
CONFIG_DEBUG=y
|
CONFIG_DEBUG=y
|
||||||
CONFIG_DEBUG_VERBOSE=n
|
CONFIG_DEBUG_VERBOSE=n
|
||||||
CONFIG_DEBUG_SYMBOLS=n
|
CONFIG_DEBUG_SYMBOLS=n
|
||||||
|
|||||||
@@ -171,8 +171,8 @@ CONFIG_HAVE_LIBM=n
|
|||||||
#
|
#
|
||||||
# General OS setup
|
# General OS setup
|
||||||
#
|
#
|
||||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||||
# that builds the application to link with NuttX.
|
# that builds the application to link with NuttX. Default: ../apps
|
||||||
# CONFIG_DEBUG - enables built-in debug options
|
# CONFIG_DEBUG - enables built-in debug options
|
||||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||||
# CONFIG_DEBUG_NET - enables debug of the network subsystem
|
# CONFIG_DEBUG_NET - enables debug of the network subsystem
|
||||||
@@ -239,7 +239,7 @@ CONFIG_HAVE_LIBM=n
|
|||||||
# desciptors by task_create() when a new task is started. If
|
# desciptors by task_create() when a new task is started. If
|
||||||
# set, all sockets will appear to be closed in the new task.
|
# set, all sockets will appear to be closed in the new task.
|
||||||
#
|
#
|
||||||
#CONFIG_APP_DIR=
|
#CONFIG_APPS_DIR=
|
||||||
CONFIG_DEBUG=y
|
CONFIG_DEBUG=y
|
||||||
CONFIG_DEBUG_VERBOSE=n
|
CONFIG_DEBUG_VERBOSE=n
|
||||||
CONFIG_DEBUG_SYMBOLS=n
|
CONFIG_DEBUG_SYMBOLS=n
|
||||||
|
|||||||
@@ -171,8 +171,8 @@ CONFIG_HAVE_LIBM=n
|
|||||||
#
|
#
|
||||||
# General OS setup
|
# General OS setup
|
||||||
#
|
#
|
||||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||||
# that builds the application to link with NuttX.
|
# that builds the application to link with NuttX. Default: ../apps
|
||||||
# CONFIG_DEBUG - enables built-in debug options
|
# CONFIG_DEBUG - enables built-in debug options
|
||||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||||
# CONFIG_DEBUG_NET - enables debug of the network subsystem
|
# CONFIG_DEBUG_NET - enables debug of the network subsystem
|
||||||
@@ -239,7 +239,7 @@ CONFIG_HAVE_LIBM=n
|
|||||||
# desciptors by task_create() when a new task is started. If
|
# desciptors by task_create() when a new task is started. If
|
||||||
# set, all sockets will appear to be closed in the new task.
|
# set, all sockets will appear to be closed in the new task.
|
||||||
#
|
#
|
||||||
#CONFIG_APP_DIR=
|
#CONFIG_APPS_DIR=
|
||||||
CONFIG_DEBUG=y
|
CONFIG_DEBUG=y
|
||||||
CONFIG_DEBUG_VERBOSE=n
|
CONFIG_DEBUG_VERBOSE=n
|
||||||
CONFIG_DEBUG_SYMBOLS=n
|
CONFIG_DEBUG_SYMBOLS=n
|
||||||
|
|||||||
@@ -171,8 +171,8 @@ CONFIG_HAVE_LIBM=n
|
|||||||
#
|
#
|
||||||
# General OS setup
|
# General OS setup
|
||||||
#
|
#
|
||||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||||
# that builds the application to link with NuttX.
|
# that builds the application to link with NuttX. Default: ../apps
|
||||||
# CONFIG_DEBUG - enables built-in debug options
|
# CONFIG_DEBUG - enables built-in debug options
|
||||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||||
# CONFIG_DEBUG_NET - enables debug of the network subsystem
|
# CONFIG_DEBUG_NET - enables debug of the network subsystem
|
||||||
@@ -239,7 +239,7 @@ CONFIG_HAVE_LIBM=n
|
|||||||
# desciptors by task_create() when a new task is started. If
|
# desciptors by task_create() when a new task is started. If
|
||||||
# set, all sockets will appear to be closed in the new task.
|
# set, all sockets will appear to be closed in the new task.
|
||||||
#
|
#
|
||||||
#CONFIG_APP_DIR=
|
#CONFIG_APPS_DIR=
|
||||||
CONFIG_DEBUG=y
|
CONFIG_DEBUG=y
|
||||||
CONFIG_DEBUG_VERBOSE=n
|
CONFIG_DEBUG_VERBOSE=n
|
||||||
CONFIG_DEBUG_SYMBOLS=n
|
CONFIG_DEBUG_SYMBOLS=n
|
||||||
|
|||||||
@@ -171,8 +171,8 @@ CONFIG_HAVE_LIBM=n
|
|||||||
#
|
#
|
||||||
# General OS setup
|
# General OS setup
|
||||||
#
|
#
|
||||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||||
# that builds the application to link with NuttX.
|
# that builds the application to link with NuttX. Default: ../apps
|
||||||
# CONFIG_DEBUG - enables built-in debug options
|
# CONFIG_DEBUG - enables built-in debug options
|
||||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||||
# CONFIG_DEBUG_NET - enables debug of the network subsystem
|
# CONFIG_DEBUG_NET - enables debug of the network subsystem
|
||||||
@@ -239,7 +239,7 @@ CONFIG_HAVE_LIBM=n
|
|||||||
# desciptors by task_create() when a new task is started. If
|
# desciptors by task_create() when a new task is started. If
|
||||||
# set, all sockets will appear to be closed in the new task.
|
# set, all sockets will appear to be closed in the new task.
|
||||||
#
|
#
|
||||||
#CONFIG_APP_DIR=
|
#CONFIG_APPS_DIR=
|
||||||
CONFIG_DEBUG=y
|
CONFIG_DEBUG=y
|
||||||
CONFIG_DEBUG_VERBOSE=n
|
CONFIG_DEBUG_VERBOSE=n
|
||||||
CONFIG_DEBUG_SYMBOLS=n
|
CONFIG_DEBUG_SYMBOLS=n
|
||||||
|
|||||||
@@ -170,8 +170,8 @@ CONFIG_HAVE_LIBM=n
|
|||||||
#
|
#
|
||||||
# General OS setup
|
# General OS setup
|
||||||
#
|
#
|
||||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||||
# that builds the application to link with NuttX.
|
# that builds the application to link with NuttX. Default: ../apps
|
||||||
# CONFIG_DEBUG - enables built-in debug options
|
# CONFIG_DEBUG - enables built-in debug options
|
||||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||||
@@ -237,7 +237,7 @@ CONFIG_HAVE_LIBM=n
|
|||||||
# desciptors by task_create() when a new task is started. If
|
# desciptors by task_create() when a new task is started. If
|
||||||
# set, all sockets will appear to be closed in the new task.
|
# set, all sockets will appear to be closed in the new task.
|
||||||
#
|
#
|
||||||
#CONFIG_APP_DIR=
|
#CONFIG_APPS_DIR=
|
||||||
CONFIG_DEBUG=y
|
CONFIG_DEBUG=y
|
||||||
CONFIG_DEBUG_VERBOSE=n
|
CONFIG_DEBUG_VERBOSE=n
|
||||||
CONFIG_DEBUG_SYMBOLS=n
|
CONFIG_DEBUG_SYMBOLS=n
|
||||||
|
|||||||
@@ -171,8 +171,8 @@ CONFIG_HAVE_LIBM=n
|
|||||||
#
|
#
|
||||||
# General OS setup
|
# General OS setup
|
||||||
#
|
#
|
||||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||||
# that builds the application to link with NuttX.
|
# that builds the application to link with NuttX. Default: ../apps
|
||||||
# CONFIG_DEBUG - enables built-in debug options
|
# CONFIG_DEBUG - enables built-in debug options
|
||||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||||
@@ -239,7 +239,7 @@ CONFIG_HAVE_LIBM=n
|
|||||||
# desciptors by task_create() when a new task is started. If
|
# desciptors by task_create() when a new task is started. If
|
||||||
# set, all sockets will appear to be closed in the new task.
|
# set, all sockets will appear to be closed in the new task.
|
||||||
#
|
#
|
||||||
#CONFIG_APP_DIR=
|
#CONFIG_APPS_DIR=
|
||||||
CONFIG_DEBUG=y
|
CONFIG_DEBUG=y
|
||||||
CONFIG_DEBUG_VERBOSE=n
|
CONFIG_DEBUG_VERBOSE=n
|
||||||
CONFIG_DEBUG_SYMBOLS=n
|
CONFIG_DEBUG_SYMBOLS=n
|
||||||
|
|||||||
@@ -217,8 +217,8 @@ CONFIG_HAVE_LIBM=n
|
|||||||
#
|
#
|
||||||
# General OS setup
|
# General OS setup
|
||||||
#
|
#
|
||||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||||
# that builds the application to link with NuttX.
|
# that builds the application to link with NuttX. Default: ../apps
|
||||||
# CONFIG_DEBUG - enables built-in debug options
|
# CONFIG_DEBUG - enables built-in debug options
|
||||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||||
@@ -288,7 +288,7 @@ CONFIG_HAVE_LIBM=n
|
|||||||
# This format will support execution of NuttX binaries located
|
# This format will support execution of NuttX binaries located
|
||||||
# in a ROMFS filesystem (see examples/nxflat).
|
# in a ROMFS filesystem (see examples/nxflat).
|
||||||
#
|
#
|
||||||
#CONFIG_APP_DIR=
|
#CONFIG_APPS_DIR=
|
||||||
CONFIG_DEBUG=n
|
CONFIG_DEBUG=n
|
||||||
CONFIG_DEBUG_VERBOSE=n
|
CONFIG_DEBUG_VERBOSE=n
|
||||||
CONFIG_DEBUG_SYMBOLS=n
|
CONFIG_DEBUG_SYMBOLS=n
|
||||||
|
|||||||
@@ -222,8 +222,8 @@ CONFIG_SPI_CMDDATA=y
|
|||||||
#
|
#
|
||||||
# General OS setup
|
# General OS setup
|
||||||
#
|
#
|
||||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||||
# that builds the application to link with NuttX.
|
# that builds the application to link with NuttX. Default: ../apps
|
||||||
# CONFIG_DEBUG - enables built-in debug options
|
# CONFIG_DEBUG - enables built-in debug options
|
||||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||||
@@ -293,7 +293,7 @@ CONFIG_SPI_CMDDATA=y
|
|||||||
# This format will support execution of NuttX binaries located
|
# This format will support execution of NuttX binaries located
|
||||||
# in a ROMFS filesystem (see examples/nxflat).
|
# in a ROMFS filesystem (see examples/nxflat).
|
||||||
#
|
#
|
||||||
#CONFIG_APP_DIR=
|
#CONFIG_APPS_DIR=
|
||||||
CONFIG_DEBUG=n
|
CONFIG_DEBUG=n
|
||||||
CONFIG_DEBUG_VERBOSE=n
|
CONFIG_DEBUG_VERBOSE=n
|
||||||
CONFIG_DEBUG_SYMBOLS=n
|
CONFIG_DEBUG_SYMBOLS=n
|
||||||
|
|||||||
@@ -217,8 +217,8 @@ CONFIG_HAVE_LIBM=n
|
|||||||
#
|
#
|
||||||
# General OS setup
|
# General OS setup
|
||||||
#
|
#
|
||||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||||
# that builds the application to link with NuttX.
|
# that builds the application to link with NuttX. Default: ../apps
|
||||||
# CONFIG_DEBUG - enables built-in debug options
|
# CONFIG_DEBUG - enables built-in debug options
|
||||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||||
@@ -288,7 +288,7 @@ CONFIG_HAVE_LIBM=n
|
|||||||
# This format will support execution of NuttX binaries located
|
# This format will support execution of NuttX binaries located
|
||||||
# in a ROMFS filesystem (see examples/nxflat).
|
# in a ROMFS filesystem (see examples/nxflat).
|
||||||
#
|
#
|
||||||
#CONFIG_APP_DIR=
|
#CONFIG_APPS_DIR=
|
||||||
CONFIG_DEBUG=n
|
CONFIG_DEBUG=n
|
||||||
CONFIG_DEBUG_VERBOSE=n
|
CONFIG_DEBUG_VERBOSE=n
|
||||||
CONFIG_DEBUG_SYMBOLS=n
|
CONFIG_DEBUG_SYMBOLS=n
|
||||||
|
|||||||
@@ -217,8 +217,8 @@ CONFIG_HAVE_LIBM=n
|
|||||||
#
|
#
|
||||||
# General OS setup
|
# General OS setup
|
||||||
#
|
#
|
||||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||||
# that builds the application to link with NuttX.
|
# that builds the application to link with NuttX. Default: ../apps
|
||||||
# CONFIG_DEBUG - enables built-in debug options
|
# CONFIG_DEBUG - enables built-in debug options
|
||||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||||
@@ -288,7 +288,7 @@ CONFIG_HAVE_LIBM=n
|
|||||||
# This format will support execution of NuttX binaries located
|
# This format will support execution of NuttX binaries located
|
||||||
# in a ROMFS filesystem (see examples/nxflat).
|
# in a ROMFS filesystem (see examples/nxflat).
|
||||||
#
|
#
|
||||||
#CONFIG_APP_DIR=
|
#CONFIG_APPS_DIR=
|
||||||
CONFIG_DEBUG=n
|
CONFIG_DEBUG=n
|
||||||
CONFIG_DEBUG_VERBOSE=n
|
CONFIG_DEBUG_VERBOSE=n
|
||||||
CONFIG_DEBUG_SYMBOLS=n
|
CONFIG_DEBUG_SYMBOLS=n
|
||||||
|
|||||||
@@ -222,8 +222,8 @@ CONFIG_SPI_CMDDATA=y
|
|||||||
#
|
#
|
||||||
# General OS setup
|
# General OS setup
|
||||||
#
|
#
|
||||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||||
# that builds the application to link with NuttX.
|
# that builds the application to link with NuttX. Default: ../apps
|
||||||
# CONFIG_DEBUG - enables built-in debug options
|
# CONFIG_DEBUG - enables built-in debug options
|
||||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||||
@@ -293,7 +293,7 @@ CONFIG_SPI_CMDDATA=y
|
|||||||
# This format will support execution of NuttX binaries located
|
# This format will support execution of NuttX binaries located
|
||||||
# in a ROMFS filesystem (see examples/nxflat).
|
# in a ROMFS filesystem (see examples/nxflat).
|
||||||
#
|
#
|
||||||
#CONFIG_APP_DIR=
|
#CONFIG_APPS_DIR=
|
||||||
CONFIG_DEBUG=n
|
CONFIG_DEBUG=n
|
||||||
CONFIG_DEBUG_VERBOSE=n
|
CONFIG_DEBUG_VERBOSE=n
|
||||||
CONFIG_DEBUG_SYMBOLS=n
|
CONFIG_DEBUG_SYMBOLS=n
|
||||||
|
|||||||
@@ -217,8 +217,8 @@ CONFIG_HAVE_LIBM=n
|
|||||||
#
|
#
|
||||||
# General OS setup
|
# General OS setup
|
||||||
#
|
#
|
||||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||||
# that builds the application to link with NuttX.
|
# that builds the application to link with NuttX. Default: ../apps
|
||||||
# CONFIG_DEBUG - enables built-in debug options
|
# CONFIG_DEBUG - enables built-in debug options
|
||||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||||
@@ -288,7 +288,7 @@ CONFIG_HAVE_LIBM=n
|
|||||||
# This format will support execution of NuttX binaries located
|
# This format will support execution of NuttX binaries located
|
||||||
# in a ROMFS filesystem (see examples/nxflat).
|
# in a ROMFS filesystem (see examples/nxflat).
|
||||||
#
|
#
|
||||||
#CONFIG_APP_DIR=
|
#CONFIG_APPS_DIR=
|
||||||
CONFIG_DEBUG=n
|
CONFIG_DEBUG=n
|
||||||
CONFIG_DEBUG_VERBOSE=n
|
CONFIG_DEBUG_VERBOSE=n
|
||||||
CONFIG_DEBUG_SYMBOLS=n
|
CONFIG_DEBUG_SYMBOLS=n
|
||||||
|
|||||||
@@ -105,8 +105,8 @@ CONFIG_HAVE_LIBM=n
|
|||||||
#
|
#
|
||||||
# General OS setup
|
# General OS setup
|
||||||
#
|
#
|
||||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||||
# that builds the application to link with NuttX.
|
# that builds the application to link with NuttX. Default: ../apps
|
||||||
# CONFIG_DEBUG - enables built-in debug options
|
# CONFIG_DEBUG - enables built-in debug options
|
||||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||||
@@ -167,7 +167,7 @@ CONFIG_HAVE_LIBM=n
|
|||||||
# desciptors by task_create() when a new task is started. If
|
# desciptors by task_create() when a new task is started. If
|
||||||
# set, all sockets will appear to be closed in the new task.
|
# set, all sockets will appear to be closed in the new task.
|
||||||
#
|
#
|
||||||
#CONFIG_APP_DIR=
|
#CONFIG_APPS_DIR=
|
||||||
CONFIG_DEBUG=n
|
CONFIG_DEBUG=n
|
||||||
CONFIG_DEBUG_VERBOSE=n
|
CONFIG_DEBUG_VERBOSE=n
|
||||||
CONFIG_DEBUG_SYMBOLS=n
|
CONFIG_DEBUG_SYMBOLS=n
|
||||||
|
|||||||
@@ -237,8 +237,8 @@ CONFIG_HAVE_LIBM=n
|
|||||||
#
|
#
|
||||||
# General OS setup
|
# General OS setup
|
||||||
#
|
#
|
||||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||||
# that builds the application to link with NuttX.
|
# that builds the application to link with NuttX. Default: ../apps
|
||||||
# CONFIG_DEBUG - enables built-in debug options
|
# CONFIG_DEBUG - enables built-in debug options
|
||||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||||
@@ -326,7 +326,7 @@ CONFIG_HAVE_LIBM=n
|
|||||||
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
||||||
# the worker thread. Default: 4
|
# the worker thread. Default: 4
|
||||||
#
|
#
|
||||||
#CONFIG_APP_DIR=
|
#CONFIG_APPS_DIR=
|
||||||
CONFIG_DEBUG=n
|
CONFIG_DEBUG=n
|
||||||
CONFIG_DEBUG_VERBOSE=n
|
CONFIG_DEBUG_VERBOSE=n
|
||||||
CONFIG_DEBUG_SYMBOLS=n
|
CONFIG_DEBUG_SYMBOLS=n
|
||||||
|
|||||||
@@ -230,8 +230,8 @@ CONFIG_HAVE_LIBM=n
|
|||||||
#
|
#
|
||||||
# General OS setup
|
# General OS setup
|
||||||
#
|
#
|
||||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||||
# that builds the application to link with NuttX.
|
# that builds the application to link with NuttX. Default: ../apps
|
||||||
# CONFIG_DEBUG - enables built-in debug options
|
# CONFIG_DEBUG - enables built-in debug options
|
||||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||||
@@ -319,7 +319,7 @@ CONFIG_HAVE_LIBM=n
|
|||||||
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
||||||
# the worker thread. Default: 4
|
# the worker thread. Default: 4
|
||||||
#
|
#
|
||||||
#CONFIG_APP_DIR=
|
#CONFIG_APPS_DIR=
|
||||||
CONFIG_DEBUG=n
|
CONFIG_DEBUG=n
|
||||||
CONFIG_DEBUG_VERBOSE=n
|
CONFIG_DEBUG_VERBOSE=n
|
||||||
CONFIG_DEBUG_SYMBOLS=n
|
CONFIG_DEBUG_SYMBOLS=n
|
||||||
|
|||||||
@@ -139,8 +139,8 @@ CONFIG_HAVE_LIBM=n
|
|||||||
#
|
#
|
||||||
# General OS setup
|
# General OS setup
|
||||||
#
|
#
|
||||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||||
# that builds the application to link with NuttX.
|
# that builds the application to link with NuttX. Default: ../apps
|
||||||
# CONFIG_DEBUG - enables built-in debug options
|
# CONFIG_DEBUG - enables built-in debug options
|
||||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||||
@@ -204,7 +204,7 @@ CONFIG_HAVE_LIBM=n
|
|||||||
# This format will support execution of NuttX binaries located
|
# This format will support execution of NuttX binaries located
|
||||||
# in a ROMFS filesystem (see examples/nxflat).
|
# in a ROMFS filesystem (see examples/nxflat).
|
||||||
#
|
#
|
||||||
#CONFIG_APP_DIR=
|
#CONFIG_APPS_DIR=
|
||||||
CONFIG_DEBUG=n
|
CONFIG_DEBUG=n
|
||||||
CONFIG_DEBUG_VERBOSE=n
|
CONFIG_DEBUG_VERBOSE=n
|
||||||
CONFIG_DEBUG_SYMBOLS=n
|
CONFIG_DEBUG_SYMBOLS=n
|
||||||
|
|||||||
@@ -139,8 +139,8 @@ CONFIG_HAVE_LIBM=n
|
|||||||
#
|
#
|
||||||
# General OS setup
|
# General OS setup
|
||||||
#
|
#
|
||||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||||
# that builds the application to link with NuttX.
|
# that builds the application to link with NuttX. Default: ../apps
|
||||||
# CONFIG_DEBUG - enables built-in debug options
|
# CONFIG_DEBUG - enables built-in debug options
|
||||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||||
@@ -204,7 +204,7 @@ CONFIG_HAVE_LIBM=n
|
|||||||
# This format will support execution of NuttX binaries located
|
# This format will support execution of NuttX binaries located
|
||||||
# in a ROMFS filesystem (see examples/nxflat).
|
# in a ROMFS filesystem (see examples/nxflat).
|
||||||
#
|
#
|
||||||
#CONFIG_APP_DIR=
|
#CONFIG_APPS_DIR=
|
||||||
CONFIG_DEBUG=n
|
CONFIG_DEBUG=n
|
||||||
CONFIG_DEBUG_VERBOSE=n
|
CONFIG_DEBUG_VERBOSE=n
|
||||||
CONFIG_DEBUG_SYMBOLS=n
|
CONFIG_DEBUG_SYMBOLS=n
|
||||||
|
|||||||
@@ -139,8 +139,8 @@ CONFIG_HAVE_LIBM=n
|
|||||||
#
|
#
|
||||||
# General OS setup
|
# General OS setup
|
||||||
#
|
#
|
||||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||||
# that builds the application to link with NuttX.
|
# that builds the application to link with NuttX. Default: ../apps
|
||||||
# CONFIG_DEBUG - enables built-in debug options
|
# CONFIG_DEBUG - enables built-in debug options
|
||||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||||
@@ -204,7 +204,7 @@ CONFIG_HAVE_LIBM=n
|
|||||||
# This format will support execution of NuttX binaries located
|
# This format will support execution of NuttX binaries located
|
||||||
# in a ROMFS filesystem (see examples/nxflat).
|
# in a ROMFS filesystem (see examples/nxflat).
|
||||||
#
|
#
|
||||||
#CONFIG_APP_DIR=
|
#CONFIG_APPS_DIR=
|
||||||
CONFIG_DEBUG=n
|
CONFIG_DEBUG=n
|
||||||
CONFIG_DEBUG_VERBOSE=n
|
CONFIG_DEBUG_VERBOSE=n
|
||||||
CONFIG_DEBUG_SYMBOLS=n
|
CONFIG_DEBUG_SYMBOLS=n
|
||||||
|
|||||||
@@ -139,8 +139,8 @@ CONFIG_HAVE_LIBM=n
|
|||||||
#
|
#
|
||||||
# General OS setup
|
# General OS setup
|
||||||
#
|
#
|
||||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||||
# that builds the application to link with NuttX.
|
# that builds the application to link with NuttX. Default: ../apps
|
||||||
# CONFIG_DEBUG - enables built-in debug options
|
# CONFIG_DEBUG - enables built-in debug options
|
||||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||||
@@ -204,7 +204,7 @@ CONFIG_HAVE_LIBM=n
|
|||||||
# This format will support execution of NuttX binaries located
|
# This format will support execution of NuttX binaries located
|
||||||
# in a ROMFS filesystem (see examples/nxflat).
|
# in a ROMFS filesystem (see examples/nxflat).
|
||||||
#
|
#
|
||||||
#CONFIG_APP_DIR=
|
#CONFIG_APPS_DIR=
|
||||||
CONFIG_DEBUG=n
|
CONFIG_DEBUG=n
|
||||||
CONFIG_DEBUG_VERBOSE=n
|
CONFIG_DEBUG_VERBOSE=n
|
||||||
CONFIG_DEBUG_SYMBOLS=n
|
CONFIG_DEBUG_SYMBOLS=n
|
||||||
|
|||||||
@@ -155,8 +155,8 @@ CONFIG_HAVE_LIBM=n
|
|||||||
#
|
#
|
||||||
# General OS setup
|
# General OS setup
|
||||||
#
|
#
|
||||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||||
# that builds the application to link with NuttX.
|
# that builds the application to link with NuttX. Default: ../apps
|
||||||
# CONFIG_DEBUG - enables built-in debug options
|
# CONFIG_DEBUG - enables built-in debug options
|
||||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||||
@@ -220,7 +220,7 @@ CONFIG_HAVE_LIBM=n
|
|||||||
# This format will support execution of NuttX binaries located
|
# This format will support execution of NuttX binaries located
|
||||||
# in a ROMFS filesystem (see examples/nxflat).
|
# in a ROMFS filesystem (see examples/nxflat).
|
||||||
#
|
#
|
||||||
#CONFIG_APP_DIR=
|
#CONFIG_APPS_DIR=
|
||||||
CONFIG_DEBUG=n
|
CONFIG_DEBUG=n
|
||||||
CONFIG_DEBUG_VERBOSE=n
|
CONFIG_DEBUG_VERBOSE=n
|
||||||
CONFIG_DEBUG_SYMBOLS=n
|
CONFIG_DEBUG_SYMBOLS=n
|
||||||
|
|||||||
@@ -205,8 +205,8 @@ CONFIG_PASS1_OBJECT=init.r
|
|||||||
#
|
#
|
||||||
# General OS setup
|
# General OS setup
|
||||||
#
|
#
|
||||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||||
# that builds the application to link with NuttX.
|
# that builds the application to link with NuttX. Default: ../apps
|
||||||
# CONFIG_DEBUG - enables built-in debug options
|
# CONFIG_DEBUG - enables built-in debug options
|
||||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||||
@@ -294,7 +294,7 @@ CONFIG_PASS1_OBJECT=init.r
|
|||||||
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
||||||
# the worker thread. Default: 4
|
# the worker thread. Default: 4
|
||||||
#
|
#
|
||||||
#CONFIG_APP_DIR=
|
#CONFIG_APPS_DIR=
|
||||||
CONFIG_DEBUG=n
|
CONFIG_DEBUG=n
|
||||||
CONFIG_DEBUG_VERBOSE=n
|
CONFIG_DEBUG_VERBOSE=n
|
||||||
CONFIG_DEBUG_SYMBOLS=n
|
CONFIG_DEBUG_SYMBOLS=n
|
||||||
|
|||||||
@@ -143,8 +143,8 @@ CONFIG_HAVE_LIBM=n
|
|||||||
#
|
#
|
||||||
# General OS setup
|
# General OS setup
|
||||||
#
|
#
|
||||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||||
# that builds the application to link with NuttX.
|
# that builds the application to link with NuttX. Default: ../apps
|
||||||
# CONFIG_DEBUG - enables built-in debug options
|
# CONFIG_DEBUG - enables built-in debug options
|
||||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||||
@@ -208,7 +208,7 @@ CONFIG_HAVE_LIBM=n
|
|||||||
# This format will support execution of NuttX binaries located
|
# This format will support execution of NuttX binaries located
|
||||||
# in a ROMFS filesystem (see examples/nxflat).
|
# in a ROMFS filesystem (see examples/nxflat).
|
||||||
#
|
#
|
||||||
#CONFIG_APP_DIR=
|
#CONFIG_APPS_DIR=
|
||||||
CONFIG_DEBUG=n
|
CONFIG_DEBUG=n
|
||||||
CONFIG_DEBUG_VERBOSE=n
|
CONFIG_DEBUG_VERBOSE=n
|
||||||
CONFIG_DEBUG_SYMBOLS=n
|
CONFIG_DEBUG_SYMBOLS=n
|
||||||
|
|||||||
@@ -142,8 +142,8 @@ CONFIG_HAVE_LIBM=n
|
|||||||
#
|
#
|
||||||
# General OS setup
|
# General OS setup
|
||||||
#
|
#
|
||||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||||
# that builds the application to link with NuttX.
|
# that builds the application to link with NuttX. Default: ../apps
|
||||||
# CONFIG_DEBUG - enables built-in debug options
|
# CONFIG_DEBUG - enables built-in debug options
|
||||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||||
@@ -207,7 +207,7 @@ CONFIG_HAVE_LIBM=n
|
|||||||
# This format will support execution of NuttX binaries located
|
# This format will support execution of NuttX binaries located
|
||||||
# in a ROMFS filesystem (see examples/nxflat).
|
# in a ROMFS filesystem (see examples/nxflat).
|
||||||
#
|
#
|
||||||
#CONFIG_APP_DIR=
|
#CONFIG_APPS_DIR=
|
||||||
CONFIG_DEBUG=n
|
CONFIG_DEBUG=n
|
||||||
CONFIG_DEBUG_VERBOSE=n
|
CONFIG_DEBUG_VERBOSE=n
|
||||||
CONFIG_DEBUG_SYMBOLS=n
|
CONFIG_DEBUG_SYMBOLS=n
|
||||||
|
|||||||
@@ -143,8 +143,8 @@ CONFIG_HAVE_LIBM=n
|
|||||||
#
|
#
|
||||||
# General OS setup
|
# General OS setup
|
||||||
#
|
#
|
||||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||||
# that builds the application to link with NuttX.
|
# that builds the application to link with NuttX. Default: ../apps
|
||||||
# CONFIG_DEBUG - enables built-in debug options
|
# CONFIG_DEBUG - enables built-in debug options
|
||||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||||
@@ -208,7 +208,7 @@ CONFIG_HAVE_LIBM=n
|
|||||||
# This format will support execution of NuttX binaries located
|
# This format will support execution of NuttX binaries located
|
||||||
# in a ROMFS filesystem (see examples/nxflat).
|
# in a ROMFS filesystem (see examples/nxflat).
|
||||||
#
|
#
|
||||||
#CONFIG_APP_DIR=
|
#CONFIG_APPS_DIR=
|
||||||
CONFIG_DEBUG=n
|
CONFIG_DEBUG=n
|
||||||
CONFIG_DEBUG_VERBOSE=n
|
CONFIG_DEBUG_VERBOSE=n
|
||||||
CONFIG_DEBUG_SYMBOLS=n
|
CONFIG_DEBUG_SYMBOLS=n
|
||||||
|
|||||||
@@ -143,8 +143,8 @@ CONFIG_HAVE_LIBM=n
|
|||||||
#
|
#
|
||||||
# General OS setup
|
# General OS setup
|
||||||
#
|
#
|
||||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||||
# that builds the application to link with NuttX.
|
# that builds the application to link with NuttX. Default: ../apps
|
||||||
# CONFIG_DEBUG - enables built-in debug options
|
# CONFIG_DEBUG - enables built-in debug options
|
||||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||||
@@ -208,7 +208,7 @@ CONFIG_HAVE_LIBM=n
|
|||||||
# This format will support execution of NuttX binaries located
|
# This format will support execution of NuttX binaries located
|
||||||
# in a ROMFS filesystem (see examples/nxflat).
|
# in a ROMFS filesystem (see examples/nxflat).
|
||||||
#
|
#
|
||||||
#CONFIG_APP_DIR=
|
#CONFIG_APPS_DIR=
|
||||||
CONFIG_DEBUG=n
|
CONFIG_DEBUG=n
|
||||||
CONFIG_DEBUG_VERBOSE=n
|
CONFIG_DEBUG_VERBOSE=n
|
||||||
CONFIG_DEBUG_SYMBOLS=n
|
CONFIG_DEBUG_SYMBOLS=n
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user