Update buidlroot to version 2016.08.1
This commit is contained in:
@@ -18,14 +18,15 @@ config BR2_PACKAGE_SWUPDATE
|
||||
use your own modified configuration, you have to select the
|
||||
necessary packages manually:
|
||||
|
||||
* Select BR2_PACKAGE_LUA_5_2 if you want to have Lua support.
|
||||
* Select BR2_PACKAGE_LUA if you want to have Lua support.
|
||||
* Select BR2_LIBCURL if you want to use the download feature.
|
||||
* Select BR2_PACKAGE_OPENSSL is you want to add encryptions support
|
||||
to the webserver.
|
||||
* Select BR2_PACKAGE_OPENSSL is you want to add encryption support.
|
||||
* Select BR2_PACKAGE_MTD if you want to use swupdate with UBI
|
||||
partitions.
|
||||
* Select BR2_PACKAGE_ZLIB if you want to deal with gzip compressed
|
||||
archives.
|
||||
* Select BR2_PACKAGE_UBOOT_TOOLS and BR2_PACKAGE_ZLIB to add support
|
||||
for setting the U-Boot environment.
|
||||
|
||||
https://sbabic.github.io/swupdate
|
||||
|
||||
|
||||
@@ -13,6 +13,9 @@ CONFIG_HAVE_DOT_CONFIG=y
|
||||
#
|
||||
CONFIG_SCRIPTS=y
|
||||
# CONFIG_HW_COMPATIBILITY is not set
|
||||
CONFIG_SW_VERSIONS_FILE="/etc/sw-versions"
|
||||
# CONFIG_MTD is not set
|
||||
# CONFIG_LUA is not set
|
||||
# CONFIG_FEATURE_SYSLOG is not set
|
||||
|
||||
#
|
||||
@@ -31,6 +34,9 @@ CONFIG_EXTRA_LDLIBS=""
|
||||
# CONFIG_DEBUG is not set
|
||||
# CONFIG_WERROR is not set
|
||||
# CONFIG_NOCLEANUP is not set
|
||||
# CONFIG_DOWNLOAD is not set
|
||||
# CONFIG_SIGNED_IMAGES is not set
|
||||
# CONFIG_SURICATTA is not set
|
||||
CONFIG_WEBSERVER=y
|
||||
|
||||
#
|
||||
@@ -42,15 +48,19 @@ CONFIG_MONGOOSE=y
|
||||
# Mongoose Feature
|
||||
#
|
||||
CONFIG_MONGOOSEIPV6=y
|
||||
# CONFIG_MONGOOSESSL is not set
|
||||
|
||||
#
|
||||
# Archival Features
|
||||
#
|
||||
CONFIG_CPIO=y
|
||||
# CONFIG_GUNZIP is not set
|
||||
|
||||
#
|
||||
# Parser Features
|
||||
#
|
||||
CONFIG_LIBCONFIG=y
|
||||
CONFIG_LIBCONFIGROOT=""
|
||||
# CONFIG_JSON is not set
|
||||
# CONFIG_SETSWDESCRIPTION is not set
|
||||
|
||||
#
|
||||
@@ -58,4 +68,5 @@ CONFIG_CPIO=y
|
||||
#
|
||||
CONFIG_RAW=y
|
||||
# CONFIG_SHELLSCRIPTHANDLER is not set
|
||||
# CONFIG_UBOOT is not set
|
||||
# CONFIG_ARCHIVE is not set
|
||||
# CONFIG_UBOOT is not set
|
||||
@@ -1,4 +1,2 @@
|
||||
# Locally calculated
|
||||
sha256 1410f8967aad0f4d3b4561110dbfb2c1f8e337bdc332f6b120f4995762c8bf6b swupdate-2015.07.tar.gz
|
||||
sha256 6cffe115cad73c0d1095f7880b6d2b97fc12b7f7871f532e5b33717e863f03d7 5a5ef5909f5da5b2070d58ffaee924bb8e6a51e1.patch
|
||||
sha256 b97a107a0e4625337485b9bb118bc9a33fa0f2bfcb80475cff017940b5261238 f26577423eb65728fcd10f78f9978dd07d51dcb9.patch
|
||||
sha256 c21d2fd52eb7ed9c304a7a996d230a8f1b47b9879a8c9fa50c80b41e117d1e60 swupdate-2016.07.tar.gz
|
||||
|
||||
@@ -4,16 +4,12 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
SWUPDATE_VERSION = 2015.07
|
||||
SWUPDATE_VERSION = 2016.07
|
||||
SWUPDATE_SITE = $(call github,sbabic,swupdate,$(SWUPDATE_VERSION))
|
||||
SWUPDATE_LICENSE = GPLv2+, MIT, Public Domain
|
||||
SWUPDATE_LICENSE_FILES = COPYING
|
||||
SWUPDATE_PATCH = \
|
||||
https://github.com/sbabic/swupdate/commit/5a5ef5909f5da5b2070d58ffaee924bb8e6a51e1.patch \
|
||||
https://github.com/sbabic/swupdate/commit/f26577423eb65728fcd10f78f9978dd07d51dcb9.patch
|
||||
|
||||
# swupdate bundles its own version of mongoose (version 3.8) and
|
||||
# lsqlite3 (version 0.8)
|
||||
# swupdate bundles its own version of mongoose (version 3.8)
|
||||
|
||||
ifeq ($(BR2_PACKAGE_JSON_C),y)
|
||||
SWUPDATE_DEPENDENCIES += json-c
|
||||
@@ -22,6 +18,13 @@ else
|
||||
SWUPDATE_MAKE_ENV += HAVE_JSON_C=n
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBARCHIVE),y)
|
||||
SWUPDATE_DEPENDENCIES += libarchive
|
||||
SWUPDATE_MAKE_ENV += HAVE_LIBARCHIVE=y
|
||||
else
|
||||
SWUPDATE_MAKE_ENV += HAVE_LIBARCHIVE=n
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBCONFIG),y)
|
||||
SWUPDATE_DEPENDENCIES += libconfig
|
||||
SWUPDATE_MAKE_ENV += HAVE_LIBCONFIG=y
|
||||
@@ -36,8 +39,8 @@ else
|
||||
SWUPDATE_MAKE_ENV += HAVE_LIBCURL=n
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LUA_5_2),y)
|
||||
SWUPDATE_DEPENDENCIES += lua
|
||||
ifeq ($(BR2_PACKAGE_LUA),y)
|
||||
SWUPDATE_DEPENDENCIES += lua host-pkgconf
|
||||
SWUPDATE_MAKE_ENV += HAVE_LUA=y
|
||||
else
|
||||
SWUPDATE_MAKE_ENV += HAVE_LUA=n
|
||||
@@ -61,6 +64,13 @@ SWUPDATE_MAKE_ENV += HAVE_LIBSSL=n
|
||||
SWUPDATE_MAKE_ENV += HAVE_LIBCRYPTO=n
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_UBOOT_TOOLS),y)
|
||||
SWUPDATE_DEPENDENCIES += uboot-tools
|
||||
SWUPDATE_MAKE_ENV += HAVE_LIBUBOOTENV=y
|
||||
else
|
||||
SWUPDATE_MAKE_ENV += HAVE_LIBUBOOTENV=n
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_ZLIB),y)
|
||||
SWUPDATE_DEPENDENCIES += zlib
|
||||
SWUPDATE_MAKE_ENV += HAVE_ZLIB=y
|
||||
|
||||
Reference in New Issue
Block a user