2013-01-16 23:41:27 +08:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
2015-06-28 22:08:57 +08:00
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
2013-01-16 23:41:27 +08:00
|
|
|
#
|
|
|
|
|
|
|
|
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.)
|