summaryrefslogtreecommitdiff
path: root/nuttx/binfmt/Kconfig
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/binfmt/Kconfig')
-rw-r--r--nuttx/binfmt/Kconfig14
1 files changed, 14 insertions, 0 deletions
diff --git a/nuttx/binfmt/Kconfig b/nuttx/binfmt/Kconfig
index 495bd050f..8d6c0bb18 100644
--- a/nuttx/binfmt/Kconfig
+++ b/nuttx/binfmt/Kconfig
@@ -49,6 +49,20 @@ if ELF
source binfmt/libelf/Kconfig
endif
+config BUILTIN
+ bool "Support Builtin Applications"
+ default n
+ ---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).
+
+if BUILTIN
+source binfmt/libbuiltin/Kconfig
+endif
+
endif
config PIC