Bump buidlroot version to 2018.02.6
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
config BR2_PACKAGE_NBD
|
||||
bool "nbd"
|
||||
depends on BR2_USE_WCHAR # glib2
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # glib2
|
||||
depends on BR2_USE_MMU # glib2
|
||||
depends on BR2_USE_WCHAR
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS
|
||||
depends on BR2_USE_MMU
|
||||
select BR2_PACKAGE_LIBGLIB2
|
||||
help
|
||||
NBD is a set of utilities to configure network block devices,
|
||||
@@ -12,16 +12,21 @@ config BR2_PACKAGE_NBD
|
||||
|
||||
if BR2_PACKAGE_NBD
|
||||
|
||||
config BR2_NBD_CLIENT
|
||||
config BR2_PACKAGE_NBD_CLIENT
|
||||
bool "nbd client"
|
||||
default y
|
||||
help
|
||||
the client part of NBD.
|
||||
The client part of NBD.
|
||||
|
||||
config BR2_NBD_SERVER
|
||||
config BR2_PACKAGE_NBD_SERVER
|
||||
bool "nbd server"
|
||||
help
|
||||
the server part of NBD.
|
||||
The server part of NBD.
|
||||
|
||||
config BR2_PACKAGE_NBD_TRDUMP
|
||||
bool "nbd trdump"
|
||||
help
|
||||
Utility to dump server logs in human-readable form.
|
||||
|
||||
endif
|
||||
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
# From http://sourceforge.net/projects/nbd/files/nbd/3.13/
|
||||
md5 784be37497cc2f9a53c67c8c77d1676d nbd-3.13.tar.xz
|
||||
sha1 e43674a2d2b42d20719cba3149748e8f5683e554 nbd-3.13.tar.xz
|
||||
md5 f52a4ef8979d81e6c15a745236582fdf nbd-3.15.2.tar.xz
|
||||
sha1 c8248dd76641a31189735407cd4d55fe63969c08 nbd-3.15.2.tar.xz
|
||||
|
||||
@@ -4,12 +4,12 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
NBD_VERSION = 3.13
|
||||
NBD_VERSION = 3.15.2
|
||||
NBD_SOURCE = nbd-$(NBD_VERSION).tar.xz
|
||||
NBD_SITE = http://downloads.sourceforge.net/project/nbd/nbd/$(NBD_VERSION)
|
||||
NBD_CONF_OPTS = --enable-lfs
|
||||
NBD_DEPENDENCIES = libglib2
|
||||
NBD_LICENSE = GPLv2
|
||||
NBD_LICENSE = GPL-2.0
|
||||
NBD_LICENSE_FILES = COPYING
|
||||
|
||||
ifeq ($(BR2_TOOLCHAIN_USES_UCLIBC),y)
|
||||
@@ -18,12 +18,15 @@ ifeq ($(BR2_TOOLCHAIN_USES_UCLIBC),y)
|
||||
NBD_CONF_ENV = ac_cv_header_linux_falloc_h=no
|
||||
endif
|
||||
|
||||
ifneq ($(BR2_NBD_CLIENT),y)
|
||||
ifneq ($(BR2_PACKAGE_NBD_CLIENT),y)
|
||||
NBD_TOREMOVE += /usr/sbin/nbd-client
|
||||
endif
|
||||
ifneq ($(BR2_NBD_SERVER),y)
|
||||
ifneq ($(BR2_PACKAGE_NBD_SERVER),y)
|
||||
NBD_TOREMOVE += /usr/bin/nbd-server
|
||||
endif
|
||||
ifneq ($(BR2_PACKAGE_NBD_TRDUMP),y)
|
||||
NBD_TOREMOVE += /usr/bin/nbd-trdump
|
||||
endif
|
||||
|
||||
define NBD_CLEANUP_AFTER_INSTALL
|
||||
rm -f $(addprefix $(TARGET_DIR), $(NBD_TOREMOVE))
|
||||
|
||||
Reference in New Issue
Block a user