Bump buildroot to version 2017-02

TG-3 #closed
This commit is contained in:
jbnadal
2017-03-28 18:29:16 +02:00
parent 93b7fd91d2
commit 42c92a6bcb
3010 changed files with 41289 additions and 46428 deletions

View File

@@ -0,0 +1,16 @@
# Automatically selected by the corresponding linux extension
config BR2_PACKAGE_AUFS
bool
if BR2_PACKAGE_AUFS
# Both come from the selection of the linux extension.
config BR2_PACKAGE_AUFS_SERIES
int
default BR2_LINUX_KERNEL_EXT_AUFS_SERIES
config BR2_PACKAGE_AUFS_VERSION
string
default BR2_LINUX_KERNEL_EXT_AUFS_VERSION
endif

View File

@@ -0,0 +1,22 @@
################################################################################
#
# aufs
#
################################################################################
AUFS_VERSION = $(call qstrip,$(BR2_PACKAGE_AUFS_VERSION))
AUFS_LICENSE = GPLv2
AUFS_LICENSE_FILES = COPYING
ifeq ($(BR2_PACKAGE_AUFS_SERIES),3)
AUFS_SITE = http://git.code.sf.net/p/aufs/aufs3-standalone
AUFS_SITE_METHOD = git
else ifeq ($(BR2_PACKAGE_AUFS_SERIES),4)
AUFS_SITE = $(call github,sfjro,aufs4-standalone,$(AUFS_VERSION))
endif
ifeq ($(BR_BUILDING):$(BR2_PACKAGE_AUFS):$(AUFS_VERSION),y:y:)
$(error No aufs version specified)
endif
$(eval $(generic-package))