Bump buidlroot version to 2018.02.6

This commit is contained in:
jbnadal
2018-10-22 14:55:59 +02:00
parent 222960cedb
commit bec94fdb63
6150 changed files with 84803 additions and 117446 deletions

10
bsp/buildroot/package/smcroute/Config.in Executable file → Normal file
View File

@@ -3,10 +3,10 @@ config BR2_PACKAGE_SMCROUTE
depends on BR2_USE_MMU # fork()
help
SMCRoute is a command line tool to manipulate the multicast
routes of a UNIX kernel. It supports both IPv4 and IPv6 multicast
routing. SMCRoute can be used as an alternative to dynamic
multicast routers like mrouted or pimd in setups where static
multicast routes should be maintained and/or no proper IGMP or
MLD signaling exists.
routes of a UNIX kernel. It supports both IPv4 and IPv6
multicast routing. SMCRoute can be used as an alternative to
dynamic multicast routers like mrouted or pimd in setups
where static multicast routes should be maintained and/or no
proper IGMP or MLD signaling exists.
https://github.com/troglobit/smcroute

View File

@@ -1,4 +1,4 @@
# Locally generated
sha256 cf344922b4298b94e53fa2db8f2b064bece60f75926966f330437dfcbd76d425 smcroute-2.1.1.tar.xz
# From https://github.com/troglobit/smcroute/releases/download/2.1.1/smcroute-2.1.1.tar.xz.md5
md5 cd9256577fe06beaf8da2eba1a02f953 smcroute-2.1.1.tar.xz
sha256 cd6c5cc2edfa1348acb07ed026180ebfc8dd0f87153f5382cb27cb5557724c56 smcroute-2.3.1.tar.xz
# From https://github.com/troglobit/smcroute/releases/download/2.3.1/smcroute-2.3.1.tar.xz.md5
md5 d8080828b7730bffb86969afd2bf94cb smcroute-2.3.1.tar.xz

11
bsp/buildroot/package/smcroute/smcroute.mk Executable file → Normal file
View File

@@ -4,14 +4,21 @@
#
################################################################################
SMCROUTE_VERSION = 2.1.1
SMCROUTE_VERSION = 2.3.1
SMCROUTE_SOURCE = smcroute-$(SMCROUTE_VERSION).tar.xz
SMCROUTE_SITE = https://github.com/troglobit/smcroute/releases/download/$(SMCROUTE_VERSION)
SMCROUTE_LICENSE = GPLv2+
SMCROUTE_LICENSE = GPL-2.0+
SMCROUTE_LICENSE_FILES = COPYING
SMCROUTE_CONF_OPTS = ac_cv_func_setpgrp_void=yes
#BUG:The package Makefile uses CC?= even though the package is autotools based
SMCROUTE_MAKE_ENV = $(TARGET_CONFIGURE_OPTS)
ifeq ($(BR2_PACKAGE_LIBCAP),y)
SMCROUTE_DEPENDENCIES = libcap
SMCROUTE_CONF_OPTS += --with-libcap
else
SMCROUTE_CONF_OPTS += --without-libcap
endif
$(eval $(autotools-package))