2012-04-06 16:33:17 +00:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
2015-06-28 08:14:53 -06:00
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
2012-04-06 16:33:17 +00:00
|
|
|
#
|
2012-04-14 20:01:08 +00:00
|
|
|
|
|
|
|
config NETUTILS_FTPD
|
|
|
|
bool "FTP server"
|
|
|
|
default n
|
2019-05-21 19:08:12 -06:00
|
|
|
depends on NET_TCP
|
2012-04-14 20:01:08 +00:00
|
|
|
---help---
|
|
|
|
Enable support for the FTP server.
|
|
|
|
|
|
|
|
if NETUTILS_FTPD
|
2017-11-06 23:41:30 +00:00
|
|
|
|
|
|
|
config FTPD_WORKERSTACKSIZE
|
2022-03-28 13:46:07 +02:00
|
|
|
int "FTPD server thread stack size"
|
2020-03-27 14:10:33 +09:00
|
|
|
default DEFAULT_TASK_STACKSIZE
|
2017-11-06 23:41:30 +00:00
|
|
|
|
2022-03-28 13:46:07 +02:00
|
|
|
config FTPD_LOGIN_PASSWD
|
|
|
|
bool "Verify FTPD server login with encrypted password file"
|
|
|
|
default n
|
|
|
|
depends on FSUTILS_PASSWD
|
|
|
|
---help---
|
|
|
|
Use the content of an encrypted password file to verify user
|
|
|
|
credentials. This option requires that you have selected
|
|
|
|
CONFIG_FSUTILS_PASSWD to enable the access methods of
|
|
|
|
apps/fsutils/passwd.
|
|
|
|
|
2012-04-14 20:01:08 +00:00
|
|
|
endif
|