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,6 @@
config BR2_PACKAGE_PPS_TOOLS
bool "pps-tools"
help
Pulse per second tools. Provides timepps.h and other PPS utilities.
https://github.com/ago/pps-tools/

View File

@@ -0,0 +1,2 @@
# Locally calculated
sha256 eee0a76118cf11d94f575ee43804a6991379f2c734b400ba01ac4811d0498e97 pps-tools-47333f24af878f67ce48022e8af16419713aa1ac.tar.gz

View File

@@ -0,0 +1,29 @@
################################################################################
#
# pps-tools
#
################################################################################
PPS_TOOLS_VERSION = 47333f24af878f67ce48022e8af16419713aa1ac
PPS_TOOLS_SITE = $(call github,ago,pps-tools,$(PPS_TOOLS_VERSION))
PPS_TOOLS_INSTALL_STAGING = YES
PPS_TOOLS_LICENSE = GPLv2+
PPS_TOOLS_LICENSE_FILES = COPYING
define PPS_TOOLS_BUILD_CMDS
$(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) all
endef
define PPS_TOOLS_INSTALL_STAGING_CMDS
mkdir -p $(STAGING_DIR)/usr/include/sys $(STAGING_DIR)/usr/bin
$(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) \
DESTDIR=$(STAGING_DIR) -C $(@D) install
endef
define PPS_TOOLS_INSTALL_TARGET_CMDS
mkdir -p $(TARGET_DIR)/usr/include/sys $(TARGET_DIR)/usr/bin
$(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) \
DESTDIR=$(TARGET_DIR) -C $(@D) install
endef
$(eval $(generic-package))