1config BR2_PACKAGE_CANNELLONI 2 bool "cannelloni" 3 depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 # C++11 4 depends on BR2_INSTALL_LIBSTDCPP 5 depends on BR2_USE_MMU # lksctp-tools 6 depends on BR2_TOOLCHAIN_HAS_THREADS # lksctp-tools 7 depends on !BR2_STATIC_LIBS # lksctp-tools 8 help 9 A SocketCAN over Ethernet tunnel. The tunnel supports both 10 UDP and SCTP protocols. 11 12 https://github.com/mguentner/cannelloni 13 14comment "cannelloni needs a toolchain w/ C++, threads, dynamic library, gcc >= 4.8" 15 depends on !BR2_INSTALL_LIBSTDCPP || BR2_STATIC_LIBS || \ 16 !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 || !BR2_TOOLCHAIN_HAS_THREADS 17 depends on BR2_USE_MMU 18