Bump buildroot to version 2017-02

TG-3 #closed
This commit is contained in:
jbnadal
2017-03-28 18:29:16 +02:00
parent 93b7fd91d2
commit 42c92a6bcb
3010 changed files with 41289 additions and 46428 deletions

View File

@@ -1,5 +1,3 @@
# From http://sourceforge.net/projects/strace/files/strace/4.13/
md5 4b78c7febdd24c79d5147824d1a080a3 strace-4.13.tar.xz
sha1 7e1fc622e2b166cb74799a14c23d6bfde9ddbc3c strace-4.13.tar.xz
# Locally computed
sha256 d48f732576c91ece36a5843d63f9be054c40ef59f1e4773986042636861625d7 strace-4.13.tar.xz
# From https://sourceforge.net/projects/strace/files/strace/4.15/
md5 1ff96209fec19914c920608ed0791864 strace-4.15.tar.xz
sha1 18fbaeb07d089023764f618f179091b663a0d21e strace-4.15.tar.xz

View File

@@ -4,12 +4,20 @@
#
################################################################################
STRACE_VERSION = 4.13
STRACE_VERSION = 4.15
STRACE_SOURCE = strace-$(STRACE_VERSION).tar.xz
STRACE_SITE = http://downloads.sourceforge.net/project/strace/strace/$(STRACE_VERSION)
STRACE_LICENSE = BSD-3c
STRACE_LICENSE_FILES = COPYING
# strace bundle some kernel headers to build libmpers, this mixes userspace
# headers and kernel headers which break the build with musl.
# The stddef.h from gcc is used instead of the one from musl.
ifeq ($(BR2_TOOLCHAIN_USES_MUSL),y)
STRACE_CONF_OPTS += st_cv_m32_mpers=no \
st_cv_mx32_mpers=no
endif
define STRACE_REMOVE_STRACE_GRAPH
rm -f $(TARGET_DIR)/usr/bin/strace-graph
endef