Config.in 1.1 KB

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