Bump buidlroot version to 2018.02.6

This commit is contained in:
jbnadal
2018-10-22 14:55:59 +02:00
parent 222960cedb
commit bec94fdb63
6150 changed files with 84803 additions and 117446 deletions

View File

@@ -6,6 +6,22 @@ config BR2_PACKAGE_MTD
http://www.linux-mtd.infradead.org/
if BR2_PACKAGE_MTD
# The two hidden options below match mtd configure script options
# --enable-jffs and --enable-ubifs
config BR2_PACKAGE_MTD_JFFS_UTILS
bool
select BR2_PACKAGE_LZO
select BR2_PACKAGE_ZLIB
config BR2_PACKAGE_MTD_UBIFS_UTILS
bool
select BR2_PACKAGE_LZO
select BR2_PACKAGE_UTIL_LINUX
select BR2_PACKAGE_UTIL_LINUX_LIBUUID
select BR2_PACKAGE_ZLIB
comment "MTD tools selection"
config BR2_PACKAGE_MTD_DOCFDISK
@@ -50,18 +66,15 @@ config BR2_PACKAGE_MTD_FTL_FORMAT
config BR2_PACKAGE_MTD_JFFS2DUMP
bool "jffs2dump"
select BR2_PACKAGE_MTD_JFFS_UTILS
config BR2_PACKAGE_MTD_MKFSJFFS2
bool "mkfs.jffs2"
select BR2_PACKAGE_ZLIB
select BR2_PACKAGE_LZO
select BR2_PACKAGE_MTD_JFFS_UTILS
config BR2_PACKAGE_MTD_MKFSUBIFS
bool "mkfs.ubifs"
select BR2_PACKAGE_ZLIB
select BR2_PACKAGE_LZO
select BR2_PACKAGE_UTIL_LINUX
select BR2_PACKAGE_UTIL_LINUX_LIBUUID
select BR2_PACKAGE_MTD_UBIFS_UTILS
config BR2_PACKAGE_MTD_MTD_DEBUG
bool "mtd_debug"
@@ -102,6 +115,7 @@ config BR2_PACKAGE_MTD_SERVE_IMAGE
config BR2_PACKAGE_MTD_SUMTOOL
bool "sumtool"
select BR2_PACKAGE_MTD_JFFS_UTILS
config BR2_PACKAGE_MTD_MTDINFO
bool "mtdinfo"
@@ -155,10 +169,43 @@ config BR2_PACKAGE_MTD_UBIBLOCK
bool "ubiblock"
default y
config BR2_PACKAGE_MTD_TESTS
bool "MTD test tools"
depends on BR2_USE_MMU # fork() in fstests
depends on BR2_TOOLCHAIN_HAS_THREADS
help
Build and install tools for testing MTD devices and drivers.
if BR2_PACKAGE_MTD_TESTS
config BR2_PACKAGE_MTD_FLASH_READTEST
bool "flash_readtest"
config BR2_PACKAGE_MTD_FLASH_SPEED
bool "flash_speed"
config BR2_PACKAGE_MTD_FLASH_STRESS
bool "flash_stress"
config BR2_PACKAGE_MTD_FLASH_TORTURE
bool "flash_torture"
config BR2_PACKAGE_MTD_INTEGCK
bool "integck"
depends on BR2_USE_MMU # fork()
help
Install the integck test program.
config BR2_PACKAGE_MTD_NANDBITERRS
bool "nandbiterrs"
config BR2_PACKAGE_MTD_NANDPAGETEST
bool "nandpagetest"
config BR2_PACKAGE_MTD_NANDSUBPAGETEST
bool "nandsubpagetest"
endif
comment "MTD test tools need a toolchain w/ threads"
depends on BR2_USE_MMU
depends on !BR2_TOOLCHAIN_HAS_THREADS
endif