Update buidlroot to version 2016.08.1
This commit is contained in:
17
bsp/buildroot/package/cannelloni/Config.in
Normal file
17
bsp/buildroot/package/cannelloni/Config.in
Normal file
@@ -0,0 +1,17 @@
|
||||
config BR2_PACKAGE_CANNELLONI
|
||||
bool "cannelloni"
|
||||
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 # C++11
|
||||
depends on BR2_INSTALL_LIBSTDCPP
|
||||
depends on BR2_USE_MMU # lksctp-tools
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # lksctp-tools
|
||||
depends on !BR2_STATIC_LIBS # lksctp-tools
|
||||
help
|
||||
A SocketCAN over Ethernet tunnel. The tunnel supports both
|
||||
UDP and SCTP protocols.
|
||||
|
||||
https://github.com/mguentner/cannelloni
|
||||
|
||||
comment "cannelloni needs a toolchain w/ C++, threads, dynamic library, gcc >= 4.8"
|
||||
depends on !BR2_INSTALL_LIBSTDCPP || BR2_STATIC_LIBS || \
|
||||
!BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 || !BR2_TOOLCHAIN_HAS_THREADS
|
||||
depends on BR2_USE_MMU
|
||||
2
bsp/buildroot/package/cannelloni/cannelloni.hash
Normal file
2
bsp/buildroot/package/cannelloni/cannelloni.hash
Normal file
@@ -0,0 +1,2 @@
|
||||
# Locally computed
|
||||
sha256 fe5abb1c9e523049c48dd906603bc762cc55ccd20c16dbec7dc64163b9eefccf cannelloni-20160414.tar.gz
|
||||
19
bsp/buildroot/package/cannelloni/cannelloni.mk
Normal file
19
bsp/buildroot/package/cannelloni/cannelloni.mk
Normal file
@@ -0,0 +1,19 @@
|
||||
################################################################################
|
||||
#
|
||||
# cannelloni
|
||||
#
|
||||
################################################################################
|
||||
|
||||
CANNELLONI_VERSION = 20160414
|
||||
CANNELLONI_SITE = $(call github,mguentner,cannelloni,$(CANNELLONI_VERSION))
|
||||
CANNELLONI_LICENSE = GPLv2
|
||||
CANNELLONI_LICENSE_FILES = gpl-2.0.txt
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LKSCTP_TOOLS),y)
|
||||
CANNELLONI_CONF_OPTS += -DSCTP_SUPPORT=ON
|
||||
CANNELLONI_DEPENDENCIES += lksctp-tools
|
||||
else
|
||||
CANNELLONI_CONF_OPTS += -DSCTP_SUPPORT=OFF
|
||||
endif
|
||||
|
||||
$(eval $(cmake-package))
|
||||
Reference in New Issue
Block a user