aboutsummaryrefslogtreecommitdiff
path: root/nuttx/fs/binfs/Kconfig
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/fs/binfs/Kconfig')
-rw-r--r--nuttx/fs/binfs/Kconfig19
1 files changed, 19 insertions, 0 deletions
diff --git a/nuttx/fs/binfs/Kconfig b/nuttx/fs/binfs/Kconfig
new file mode 100644
index 000000000..eedbe497d
--- /dev/null
+++ b/nuttx/fs/binfs/Kconfig
@@ -0,0 +1,19 @@
+#
+# For a description of the syntax of this configuration file,
+# see misc/tools/kconfig-language.txt.
+#
+
+config FS_BINFS
+ bool "BINFS File System"
+ default n
+ depends on BUILTIN
+ ---help---
+ The BINFS file system is provides access to builtin applications through
+ the NuttX file system. The BINFS may, for example, be mount at /bin.
+ Then all of the built-in applications will appear as executable files in
+ /bin. Then, for example, you list them from NSH like:
+
+ nsh> ls -l /bin
+
+ If the BINFS BINFMT loader is also enabled, then the builtin applications
+ can be executed through the normal mechanisms (posix_spawn(), exev(), etc.)