update buildroot to 2017.02.11

This commit is contained in:
jbnadal
2018-05-22 15:35:47 +02:00
parent 4bf1f5e091
commit a3c10bd762
9257 changed files with 433426 additions and 1701 deletions

View File

@@ -0,0 +1,13 @@
config BR2_PACKAGE_ATF
bool "atf"
depends on BR2_INSTALL_LIBSTDCPP
depends on BR2_USE_MMU # fork()
help
ATF, or Automated Testing Framework, is a collection of
libraries to write test programs in C, C++ and POSIX shell.
https://github.com/jmmv/atf
comment "atf needs a toolchain w/ C++"
depends on !BR2_INSTALL_LIBSTDCPP
depends on BR2_USE_MMU

View File

@@ -0,0 +1,2 @@
# Locally computed
sha256 92bc64180135eea8fe84c91c9f894e678767764f6dbc8482021d4dde09857505 atf-0.21.tar.gz

View File

@@ -0,0 +1,24 @@
################################################################################
#
# atf
#
################################################################################
ATF_VERSION = 0.21
ATF_SITE = https://github.com/jmmv/atf/releases/download/atf-$(ATF_VERSION)
ATF_INSTALL_STAGING = YES
ATF_LICENSE = BSD-2c, BSD-3c
ATF_LICENSE_FILES = COPYING
# Ships a beta libtool version hence our patch doesn't apply.
ATF_AUTORECONF = YES
# Do not install precompiled tests.
ATF_INSTALL_TARGET_OPTS = DESTDIR=$(TARGET_DIR) install-exec
# ATF_SHELL defaults to the host's bash
ATF_CONF_ENV = \
kyua_cv_getopt_plus=yes \
kyua_cv_attribute_noreturn=yes \
kyua_cv_getcwd_works=yes \
ATF_SHELL=/bin/sh
$(eval $(autotools-package))