1config BR2_PACKAGE_VSFTPD 2 bool "vsftpd" 3 depends on BR2_USE_MMU # fork() 4 select BR2_PACKAGE_LIBXCRYPT if BR2_TOOLCHAIN_USES_GLIBC 5 help 6 vsftpd is an ftp daemon written with security in mind. 7 http://vsftpd.beasts.org/ 8 9if BR2_PACKAGE_VSFTPD 10 11config BR2_PACKAGE_VSFTPD_UTMPX 12 bool "log vsftpd access to utmpx" 13 # musl 1.1.4 has an empty utmpx implementation and no WTMPX_FILE 14 depends on !BR2_TOOLCHAIN_USES_MUSL 15 help 16 Enable logging of vsftpd access to utmpx. 17 Note that Buildroot does not generate utmpx by default. 18 19endif 20