summaryrefslogtreecommitdiff
path: root/nuttx/binfmt/Kconfig
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-01-16 17:05:00 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-01-16 17:05:00 +0000
commit880aa24ce3cb2bae6decbbdb2650f91a2547ba53 (patch)
tree6e7738015216d3c39847602e0ea776a3e14faa19 /nuttx/binfmt/Kconfig
parentd904fafdf2f9f7ad686bd9d8b616aa310f5346eb (diff)
downloadnuttx-880aa24ce3cb2bae6decbbdb2650f91a2547ba53.tar.gz
nuttx-880aa24ce3cb2bae6decbbdb2650f91a2547ba53.tar.bz2
nuttx-880aa24ce3cb2bae6decbbdb2650f91a2547ba53.zip
Rename apps/include/apps.h to builtin.h. Move parts of apps/builtins/exec_builtin.c to binfmt/libbuiltin/libbuiltin_utils.c
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5524 42af7a65-404d-4744-a932-0658087f49c3
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