mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-08-27 20:30:41 +00:00
fs: rename PSEUDOFS_SOFTLINKS to FS_LINKS
The link support is no longer limited to the pseudo file system and now covers both soft (symbolic) links and hard links across the VFS. Update all references to the renamed configuration option PSEUDOFS_SOFTLINKS, which has been renamed to FS_LINKS in the NuttX kernel, so that nshlib, the interpreters, adb, tlpi and the test suites keep building. This must be merged together with the corresponding NuttX change that performs the actual kernel-side rename. Signed-off-by: zhengyu16 <zhengyu16@xiaomi.com>
This commit is contained in:
parent
94012303da
commit
9cda1fbb60
9 changed files with 18 additions and 18 deletions
|
|
@ -29,7 +29,7 @@ config TESTS_TESTSUITES_STACKSIZE
|
|||
config CM_FS_TEST
|
||||
bool "enable fs test"
|
||||
default n
|
||||
depends on PSEUDOFS_SOFTLINKS
|
||||
depends on FS_LINKS
|
||||
|
||||
config CM_SCHED_TEST
|
||||
bool "enable schedule test"
|
||||
|
|
@ -56,7 +56,7 @@ config CM_SOCKET_TEST
|
|||
config CM_SYSCALL_TEST
|
||||
bool "enable syscall test"
|
||||
default n
|
||||
depends on PIPES && SCHED_HAVE_PARENT && FS_TMPFS && ARCH_SETJMP_H && PSEUDOFS_SOFTLINKS
|
||||
depends on PIPES && SCHED_HAVE_PARENT && FS_TMPFS && ARCH_SETJMP_H && FS_LINKS
|
||||
|
||||
config CM_MUTEX_TEST
|
||||
bool "enable mutex test"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue