Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/tlpi/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ MAINSRC += $(TLPIDIR)/dirs_links/file_type_stats.c \
$(TLPIDIR)/dirs_links/nftw_dir_tree.c \
$(TLPIDIR)/dirs_links/t_unlink.c \
$(TLPIDIR)/dirs_links/t_dirbasename.c
ifneq ($(CONFIG_PSEUDOFS_SOFTLINKS),)
ifneq ($(CONFIG_FS_LINKS),)
MAINSRC += $(TLPIDIR)/dirs_links/bad_symlink.c \
$(TLPIDIR)/dirs_links/view_symlink.c
endif
Expand Down
2 changes: 1 addition & 1 deletion interpreters/luamodules/luv/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ config LUA_LUV_MODULE
depends on NET_SOCKOPTS
depends on NET_TCP
depends on NET_UDP
depends on PSEUDOFS_SOFTLINKS
depends on FS_LINKS
depends on SCHED_HAVE_PARENT
---help---
Bare libuv bindings for Lua
Expand Down
6 changes: 3 additions & 3 deletions interpreters/wamr/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ config INTERPRETERS_WAMR_BUILD_MODULES_FOR_NUTTX

config INTERPRETERS_WAMR_LIBC_WASI
bool "Enable WASI libc"
select PSEUDOFS_SOFTLINKS
select FS_LINKS
default n
---help---
Note: As of writing this, this works only with main branch of
Expand Down Expand Up @@ -158,7 +158,7 @@ config INTERPRETERS_WAMR_STACK_GUARD_SIZE

The default value here (1024) was chosen to match the default value on
the majority of other platforms, including Linux. It also matches
the expections in the WAMR AoT compiler.
the exceptions in the WAMR AoT compiler.
On the other hand, it might be a bit larger than what's strictly
necessary, especially for typical NuttX targets.

Expand Down Expand Up @@ -241,7 +241,7 @@ config INTERPRETERS_WAMR_GLOBAL_HEAP_POOL_SIZE
endif # INTERPRETERS_WAMR_GLOBAL_HEAP_POOL

config INTERPRETERS_WAMR_CONFIGUABLE_BOUNDS_CHECKS
bool "Configuable bounds checks"
bool "Configurable bounds checks"
default n
---help---
Bounds checks enabled by default. With this option, you can
Expand Down
4 changes: 2 additions & 2 deletions nshlib/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@ config NSH_DISABLE_LOMTD
config NSH_DISABLE_LN
bool "Disable ln"
default DEFAULT_SMALL
depends on PSEUDOFS_SOFTLINKS
depends on FS_LINKS

config NSH_DISABLE_LS
bool "Disable ls"
Expand Down Expand Up @@ -636,7 +636,7 @@ config NSH_DISABLE_PWD
config NSH_DISABLE_READLINK
bool "Disable readlink"
default DEFAULT_SMALL
depends on PSEUDOFS_SOFTLINKS
depends on FS_LINKS

config NSH_DISABLE_SWITCHBOOT
bool "Switch boot partition"
Expand Down
4 changes: 2 additions & 2 deletions nshlib/nsh.h
Original file line number Diff line number Diff line change
Expand Up @@ -992,7 +992,7 @@ int cmd_irqinfo(FAR struct nsh_vtbl_s *vtbl, int argc, FAR char **argv);
#ifndef CONFIG_NSH_DISABLE_HEXDUMP
int cmd_hexdump(FAR struct nsh_vtbl_s *vtbl, int argc, FAR char **argv);
#endif
#if !defined(CONFIG_NSH_DISABLE_LN) && defined(CONFIG_PSEUDOFS_SOFTLINKS)
#if !defined(CONFIG_NSH_DISABLE_LN) && defined(CONFIG_FS_LINKS)
int cmd_ln(FAR struct nsh_vtbl_s *vtbl, int argc, FAR char **argv);
#endif
#ifndef CONFIG_NSH_DISABLE_LS
Expand All @@ -1004,7 +1004,7 @@ int cmd_irqinfo(FAR struct nsh_vtbl_s *vtbl, int argc, FAR char **argv);
#if defined(CONFIG_SYSLOG_DEVPATH) && !defined(CONFIG_NSH_DISABLE_DMESG)
int cmd_dmesg(FAR struct nsh_vtbl_s *vtbl, int argc, FAR char **argv);
#endif
#if !defined(CONFIG_NSH_DISABLE_READLINK) && defined(CONFIG_PSEUDOFS_SOFTLINKS)
#if !defined(CONFIG_NSH_DISABLE_READLINK) && defined(CONFIG_FS_LINKS)
int cmd_readlink(FAR struct nsh_vtbl_s *vtbl, int argc, FAR char **argv);
#endif
#if !defined(CONFIG_NSH_DISABLESCRIPT) && !defined(CONFIG_NSH_DISABLE_SOURCE)
Expand Down
4 changes: 2 additions & 2 deletions nshlib/nsh_command.c
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ static const struct cmdmap_s g_cmdmap[] =
# endif
#endif

#if !defined(CONFIG_NSH_DISABLE_LN) && defined(CONFIG_PSEUDOFS_SOFTLINKS)
#if !defined(CONFIG_NSH_DISABLE_LN) && defined(CONFIG_FS_LINKS)
CMD_MAP("ln", cmd_ln, 3, 4, "[-s] <target> <link>"),
#endif

Expand Down Expand Up @@ -508,7 +508,7 @@ static const struct cmdmap_s g_cmdmap[] =
CMD_MAP("pwd", cmd_pwd, 1, 1, NULL),
#endif

#if !defined(CONFIG_NSH_DISABLE_READLINK) && defined(CONFIG_PSEUDOFS_SOFTLINKS)
#if !defined(CONFIG_NSH_DISABLE_READLINK) && defined(CONFIG_FS_LINKS)
CMD_MAP("readlink", cmd_readlink, 2, 2, "<link>"),
#endif

Expand Down
Loading
Loading