Config.in 1.0 KB

12345678910111213141516171819202122232425262728293031323334
  1. comment "netopeer2 needs a toolchain w/ gcc >= 4.8, C++, threads, dynamic library"
  2. depends on BR2_USE_MMU
  3. depends on BR2_STATIC_LIBS || !BR2_INSTALL_LIBSTDCPP \
  4. || !BR2_TOOLCHAIN_HAS_THREADS_NPTL || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8
  5. config BR2_PACKAGE_NETOPEER2
  6. bool "netopeer2"
  7. depends on BR2_USE_MMU # libnetconf2, libssh, sysrepo
  8. depends on !BR2_STATIC_LIBS # libnetconf2, libssh, libyang, sysrepo
  9. depends on BR2_INSTALL_LIBSTDCPP # sysrepo
  10. depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL
  11. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 # sysrepo
  12. select BR2_PACKAGE_LIBNETCONF2
  13. select BR2_PACKAGE_LIBSSH
  14. select BR2_PACKAGE_LIBSSH_SERVER # For libnetconf2 to have SSH
  15. select BR2_PACKAGE_LIBYANG
  16. select BR2_PACKAGE_OPENSSL # For libnetconf2 to have TLS
  17. select BR2_PACKAGE_SYSREPO
  18. help
  19. Netopeer2 is a set of tools implementing network configuration
  20. tools based on the NETCONF Protocol.
  21. This is the server part.
  22. https://github.com/CESNET/Netopeer2
  23. if BR2_PACKAGE_NETOPEER2
  24. config BR2_PACKAGE_NETOPEER2_CLI
  25. bool "cli"
  26. help
  27. Enable netopeer2 CLI.
  28. endif