2012-04-06 18:33:17 +02:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
2012-04-06 18:45:52 +02:00
|
|
|
# see misc/tools/kconfig-language.txt.
|
2012-04-06 18:33:17 +02:00
|
|
|
#
|
2012-04-13 04:14:09 +02:00
|
|
|
|
|
|
|
config EXAMPLES_NSH
|
|
|
|
bool "NuttShell (NSH) example"
|
|
|
|
default n
|
2012-09-05 14:45:35 +02:00
|
|
|
select NSH_LIBRARY
|
|
|
|
select SYSTEM_READLINE
|
2012-04-13 04:14:09 +02:00
|
|
|
---help---
|
|
|
|
Enable the NuttShell (NSH) example
|
|
|
|
|
|
|
|
if EXAMPLES_NSH
|
2013-06-21 17:32:57 +02:00
|
|
|
|
|
|
|
config EXAMPLES_NSH_CXXINITIALIZE
|
|
|
|
bool "C++ Initialization"
|
|
|
|
default n
|
|
|
|
depends on HAVE_CXX && HAVE_CXXINITIALIZE
|
|
|
|
---help---
|
|
|
|
If HAVE_CXX and HAVE_CXXINITIALIZE are slected, then this NSH
|
|
|
|
example can be configured to initialize C++ constructors when it
|
|
|
|
is started. NSH does not use C++ and, by default, assumes that
|
|
|
|
constructors are initialized elsewhere. However, you can force
|
|
|
|
NSH to initialize constructors by setting this option.
|
|
|
|
|
2012-04-13 04:14:09 +02:00
|
|
|
endif
|