Config.in 720 B

1234567891011121314151617181920212223242526272829
  1. config BR2_PACKAGE_FASTD
  2. bool "fastd"
  3. depends on BR2_USE_MMU # fork()
  4. depends on BR2_TOOLCHAIN_HAS_THREADS
  5. depends on !BR2_STATIC_LIBS # libuecc
  6. select BR2_PACKAGE_LIBUECC
  7. select BR2_PACKAGE_LIBSODIUM
  8. select BR2_PACKAGE_LIBSODIUM_FULL
  9. help
  10. Fast and Secure Tunneling Daemon
  11. https://github.com/NeoRaider/fastd/wiki
  12. if BR2_PACKAGE_FASTD
  13. config BR2_PACKAGE_FASTD_STATUS_SOCKET
  14. bool "status socket support"
  15. default y
  16. depends on BR2_TOOLCHAIN_HAS_SYNC_4 # json-c
  17. select BR2_PACKAGE_JSON_C
  18. help
  19. Enable support for a socket to get fastd's status.
  20. endif
  21. comment "fastd needs a toolchain w/ threads, dynamic library"
  22. depends on BR2_USE_MMU
  23. depends on !BR2_TOOLCHAIN_HAS_THREADS \
  24. || BR2_STATIC_LIBS