Update buidlroot to version 2016.08.1

This commit is contained in:
2016-11-16 22:07:29 +01:00
parent 807ab03547
commit a1061efbc2
3636 changed files with 59539 additions and 25783 deletions

View File

@@ -10,13 +10,22 @@ PAX_UTILS_SOURCE = pax-utils-$(PAX_UTILS_VERSION).tar.xz
PAX_UTILS_LICENSE = GPLv2
PAX_UTILS_LICENSE_FILES = COPYING
PAX_UTILS_DEPENDENCIES = host-pkgconf
PAX_UTILS_CONF_OPTS = --without-python
ifeq ($(BR2_PACKAGE_LIBCAP),y)
PAX_UTILS_DEPENDENCIES += libcap
PAX_UTILS_USE_CAP = USE_CAP=yes
PAX_UTILS_CONF_OPTS += --with-caps
else
PAX_UTILS_CONF_OPTS += --without-caps
endif
# libcap is only useful for pspax (a running system)
HOST_PAX_UTILS_DEPENDENCIES =
ifeq ($(BR2_PACKAGE_LIBSECCOMP),y)
PAX_UTILS_DEPENDENCIES += libseccomp
PAX_UTILS_CONF_OPTS += --with-seccomp
else
PAX_UTILS_CONF_OPTS += --without-seccomp
endif
# lddtree and symtree need bash
ifeq ($(BR2_PACKAGE_BASH),)
@@ -26,22 +35,5 @@ endef
endif
PAX_UTILS_POST_INSTALL_TARGET_HOOKS += PAX_UTILS_REMOVE_BASH_TOOLS
define HOST_PAX_UTILS_BUILD_CMDS
$(MAKE) $(HOST_CONFIGURE_OPTS) -C $(@D)
endef
define PAX_UTILS_BUILD_CMDS
$(MAKE) $(TARGET_CONFIGURE_OPTS) $(PAX_UTILS_USE_CAP) -C $(@D)
endef
define HOST_PAX_UTILS_INSTALL_CMDS
$(MAKE) $(HOST_CONFIGURE_OPTS) -C $(@D) DESTDIR="$(HOST_DIR)" install
endef
define PAX_UTILS_INSTALL_TARGET_CMDS
$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) \
DESTDIR="$(TARGET_DIR)" install
endef
$(eval $(generic-package))
$(eval $(host-generic-package))
$(eval $(autotools-package))
$(eval $(host-autotools-package))