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,14 @@
comment "lzip needs a toolchain w/ C++"
depends on !BR2_INSTALL_LIBSTDCPP
config BR2_PACKAGE_LZIP
bool "lzip"
depends on BR2_INSTALL_LIBSTDCPP
help
Lzip is a lossless data compressor with a user interface similar
to the one of gzip or bzip2.
Lzip is about as fast as gzip, compresses most files more than
bzip2, and is better than both from a data recovery perspective.
Lzip is a clean implementation of the LZMA algorithm.
http://www.nongnu.org/lzip/lzip.html

View File

@@ -0,0 +1,4 @@
# From http://lists.nongnu.org/archive/html/lzip-bug/2016-06/msg00002.html
sha1 ef42f3209d02c3b3c217a61c8f127bcb8747b128 lzip-1.18.tar.gz
# Locally calculated after checking pgp signature
sha256 47f9882a104ab05532f467a7b8f4ddbb898fa2f1e8d9d468556d6c2d04db14dd lzip-1.18.tar.gz

View File

@@ -0,0 +1,40 @@
################################################################################
#
# lzip
#
################################################################################
LZIP_VERSION = 1.18
LZIP_SITE = http://download.savannah.gnu.org/releases/lzip
LZIP_LICENSE = GPLv2+
LZIP_LICENSE_FILES = COPYING
define LZIP_CONFIGURE_CMDS
(cd $(@D); $(TARGET_MAKE_ENV) ./configure --prefix=/usr \
$(TARGET_CONFIGURE_OPTS) )
endef
define HOST_LZIP_CONFIGURE_CMDS
(cd $(@D); $(HOST_MAKE_ENV) ./configure --prefix=/usr \
$(HOST_CONFIGURE_OPTS) )
endef
define LZIP_BUILD_CMDS
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D)
endef
define HOST_LZIP_BUILD_CMDS
$(HOST_MAKE_ENV) $(MAKE) -C $(@D)
endef
define LZIP_INSTALL_TARGET_CMDS
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) DESTDIR=$(TARGET_DIR) install
endef
define HOST_LZIP_INSTALL_CMDS
$(HOST_MAKE_ENV) $(MAKE) -C $(@D) DESTDIR=$(HOST_DIR) install
endef
# It's not autotools-based
$(eval $(generic-package))
$(eval $(host-generic-package))