Update buildroot v2020.02.4 (#811)

* Update buildroot to 2020.02.4

Signed-off-by: Pascal Vizeli <pvizeli@syshack.ch>

* fix patches

Signed-off-by: Pascal Vizeli <pvizeli@syshack.ch>
This commit is contained in:
Pascal Vizeli
2020-08-06 20:54:14 +02:00
committed by GitHub
parent 1f4bd67f7e
commit fa53c7bc99
239 changed files with 3051 additions and 938 deletions

View File

@@ -1,6 +1,6 @@
# From http://www.squid-cache.org/Versions/v4/squid-4.11.tar.xz.asc
md5 10f34e852153a9996aa4614670e2bda1 squid-4.11.tar.xz
sha1 053277bf5497163ffc9261b9807abda5959bb6fc squid-4.11.tar.xz
# From http://www.squid-cache.org/Versions/v4/squid-4.12.tar.xz.asc
md5 ad7a4a8a0031cae3435717a759173829 squid-4.12.tar.xz
sha1 316b8a343aa542b5e7469d33b9d726bee00679c6 squid-4.12.tar.xz
# Locally calculated
sha256 4ed947612410263f57ad0e39bfd087e60fb714f028d7d3b0e469943efd34287d squid-4.11.tar.xz
sha256 f42a03c8b3dc020722c88bf1a87da8cb0c087b2f66b41d8256c77ee1b527e317 squid-4.12.tar.xz
sha256 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643 COPYING

View File

@@ -4,7 +4,7 @@
#
################################################################################
SQUID_VERSION = 4.11
SQUID_VERSION = 4.12
SQUID_SOURCE = squid-$(SQUID_VERSION).tar.xz
SQUID_SITE = http://www.squid-cache.org/Versions/v4
SQUID_LICENSE = GPL-2.0+
@@ -62,6 +62,13 @@ else
SQUID_CONF_OPTS += --without-gnutls
endif
ifeq ($(BR2_PACKAGE_SYSTEMD),y)
SQUID_CONF_OPTS += --with-systemd
SQUID_DEPENDENCIES += systemd
else
SQUID_CONF_OPTS += --without-systemd
endif
define SQUID_CLEANUP_TARGET
rm -f $(addprefix $(TARGET_DIR)/usr/bin/, \
RunCache RunAccel)