incubator-nuttx/fs/binfs
Gregory Nutt 9f7f258728 Add support for umount2(target, MNT_FORCE) in the FAT file system. 2015-03-15 07:45:19 -06:00
..
Kconfig Alloc CONFIG_FS_READABLE/WRITABLE to be defined in Kconfig files while preserving backward compatibility with legacy configurations (for the time being) 2013-11-15 09:49:27 -06:00
Make.defs Completes VFS-based named semaphore implemetation. Still a little buggy 2014-09-28 15:58:56 -06:00
README.txt fs/binfs/README.txt: Add a README file 2013-11-13 16:40:03 -06:00
fs_binfs.c Add support for umount2(target, MNT_FORCE) in the FAT file system. 2015-03-15 07:45:19 -06:00

README.txt

fs/binfs README
================

  This is the binfs file system that allows "fake" execution of NSH built-
  in applications via the file system.  The binfs fs file system can be
  built into the system by enabling:

    CONFIG_BUILTIN=y
    CONFIG_FS_BINFS=y

  It can then be mounted from the NSH command like like:

   mount -t binfs /bin

Example
=======

  NuttShell (NSH) NuttX-6.31
  nsh> hello
  nsh: hello: command not found

  nsh> mount -t binfs /bin
  nsh> ls /bin
  ls /bin
  /bin:
   hello

  nsh> /bin/hello
  Hello, World!!