38 lines
1.1 KiB
Plaintext
38 lines
1.1 KiB
Plaintext
#
|
|
# For a description of the syntax of this configuration file,
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
#
|
|
|
|
config FS_HOSTFS
|
|
bool "Host File System"
|
|
default n
|
|
depends on !DISABLE_MOUNTPOINT
|
|
---help---
|
|
The Host file system provides a mechanism to mount directories
|
|
from the host OS during simulation mode. The host directory
|
|
to be "mounted" is specified during the mount command using
|
|
the -o command line switch, such as:
|
|
|
|
mount -t hostfs -o fs=/home/user/nuttx_root /host
|
|
|
|
For non-NSH operation, the option "fs=home/user/nuttx_root" would
|
|
be passed to the 'mount()' routine using the optional 'void *data'
|
|
parameter.
|
|
|
|
config FS_HOSTFS_RPMSG
|
|
bool "Host File System Rpmsg"
|
|
default n
|
|
depends on FS_HOSTFS
|
|
depends on OPENAMP
|
|
---help---
|
|
Use Host file system to mount directories through rpmsg.
|
|
This is the driver that sending the message.
|
|
|
|
config FS_HOSTFS_RPMSG_SERVER
|
|
bool "Host File System Rpmsg Server"
|
|
default n
|
|
depends on OPENAMP
|
|
---help---
|
|
Use Host file system to mount directories through rpmsg.
|
|
This is the driver that receiving the message.
|