2014-09-30 06:48:01 +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.
|
2014-09-30 06:48:01 +08:00
|
|
|
#
|
|
|
|
|
2022-03-24 14:52:46 +08:00
|
|
|
config FS_SHMFS
|
2014-09-30 06:48:01 +08:00
|
|
|
bool "Shared memory support"
|
|
|
|
default n
|
2022-03-24 14:52:46 +08:00
|
|
|
select ARCH_VMA_MAPPING if BUILD_KERNEL
|
2014-09-30 06:48:01 +08:00
|
|
|
---help---
|
|
|
|
Include support for shm_open() and shm_close.
|
|
|
|
|
2022-03-24 14:52:46 +08:00
|
|
|
if FS_SHMFS
|
2014-09-30 06:48:01 +08:00
|
|
|
|
2022-03-24 14:52:46 +08:00
|
|
|
config FS_SHMFS_VFS_PATH
|
2014-09-30 06:48:01 +08:00
|
|
|
string "Path to shared memory object storage"
|
|
|
|
default "/var/shm"
|
|
|
|
---help---
|
|
|
|
The path to where shared memory objects will exist in the VFS
|
|
|
|
namespace.
|
2017-06-29 03:17:55 +08:00
|
|
|
|
2024-01-31 21:56:23 +08:00
|
|
|
endif # FS_SHMFS
|