Config.in 478 B

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