16 lines
575 B
Plaintext
16 lines
575 B
Plaintext
|
#
|
||
|
# For a description of the syntax of this configuration file,
|
||
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
||
|
#
|
||
|
|
||
|
config BUILTIN
|
||
|
bool "Support Builtin Applications"
|
||
|
default n
|
||
|
depends on !BUILD_KERNEL || EXPERIMENTAL
|
||
|
---help---
|
||
|
Enable support for builtin applications. This features assigns a string
|
||
|
name to an application and in addition if FS_BINFS is defined, retaining
|
||
|
those names in a file system from which they can be executed. This feature
|
||
|
is also the underlying requirement to support built-in applications in the
|
||
|
NuttShell (NSH).
|