1comment "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 6config BR2_PACKAGE_NETOPEER2 7 bool "netopeer2" 8 depends on BR2_USE_MMU # libnetconf2, libssh, sysrepo 9 depends on !BR2_STATIC_LIBS # libnetconf2, libssh, libyang, sysrepo 10 depends on BR2_INSTALL_LIBSTDCPP # sysrepo 11 depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL 12 depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 # sysrepo 13 select BR2_PACKAGE_LIBNETCONF2 14 select BR2_PACKAGE_LIBSSH 15 select BR2_PACKAGE_LIBSSH_SERVER # For libnetconf2 to have SSH 16 select BR2_PACKAGE_LIBYANG 17 select BR2_PACKAGE_OPENSSL # For libnetconf2 to have TLS 18 select BR2_PACKAGE_SYSREPO 19 help 20 Netopeer2 is a set of tools implementing network configuration 21 tools based on the NETCONF Protocol. 22 23 This is the server part. 24 25 https://github.com/CESNET/Netopeer2 26 27if BR2_PACKAGE_NETOPEER2 28 29config BR2_PACKAGE_NETOPEER2_CLI 30 bool "cli" 31 help 32 Enable netopeer2 CLI. 33 34endif 35