Update buildroot to 2020.11.2 (#1200)
Signed-off-by: Stefan Agner <stefan@agner.ch>
This commit is contained in:
@@ -1,15 +1,5 @@
|
||||
BR2_x86_64=y
|
||||
BR2_x86_corei7=y
|
||||
BR2_TOOLCHAIN_EXTERNAL=y
|
||||
BR2_TOOLCHAIN_EXTERNAL_CUSTOM=y
|
||||
BR2_TOOLCHAIN_EXTERNAL_DOWNLOAD=y
|
||||
BR2_TOOLCHAIN_EXTERNAL_URL="http://toolchains.bootlin.com/downloads/releases/toolchains/x86-64-core-i7/tarballs/x86-64-core-i7--glibc--bleeding-edge-2020.02-2.tar.bz2"
|
||||
BR2_TOOLCHAIN_EXTERNAL_GCC_9=y
|
||||
BR2_TOOLCHAIN_EXTERNAL_HEADERS_4_19=y
|
||||
# BR2_TOOLCHAIN_EXTERNAL_LOCALE is not set
|
||||
BR2_TOOLCHAIN_EXTERNAL_CXX=y
|
||||
BR2_TOOLCHAIN_EXTERNAL_HAS_SSP=y
|
||||
BR2_TOOLCHAIN_EXTERNAL_HAS_THREADS_DEBUG=y
|
||||
BR2_TOOLCHAIN_EXTERNAL_HAS_THREADS=y
|
||||
BR2_TOOLCHAIN_EXTERNAL_HAS_THREADS_NPTL=y
|
||||
BR2_TOOLCHAIN_EXTERNAL_CUSTOM_GLIBC=y
|
||||
BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
|
||||
BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_X86_64_CORE_I7_GLIBC_BLEEDING_EDGE=y
|
||||
|
||||
@@ -3,7 +3,12 @@
|
||||
# package is bumped or a new one added, and it requires a higher
|
||||
# version, our cmake infra will catch it and build its own.
|
||||
#
|
||||
ifeq ($(BR2_PACKAGE_GERBERA),y)
|
||||
# gerbera needs 3.14+
|
||||
BR2_CMAKE_VERSION_MIN = 3.14
|
||||
else
|
||||
BR2_CMAKE_VERSION_MIN = 3.10
|
||||
endif
|
||||
|
||||
BR2_CMAKE_CANDIDATES ?= cmake cmake3
|
||||
BR2_CMAKE ?= $(call suitable-host-package,cmake,\
|
||||
|
||||
2
buildroot/support/misc/Vagrantfile
vendored
2
buildroot/support/misc/Vagrantfile
vendored
@@ -5,7 +5,7 @@
|
||||
################################################################################
|
||||
|
||||
# Buildroot version to use
|
||||
RELEASE='2020.11.1'
|
||||
RELEASE='2020.11.2'
|
||||
|
||||
### Change here for more memory/cores ###
|
||||
VM_MEMORY=2048
|
||||
|
||||
@@ -32,7 +32,6 @@ brpath = os.path.normpath(os.path.join(os.path.dirname(__file__), "..", ".."))
|
||||
|
||||
sys.path.append(os.path.join(brpath, "utils"))
|
||||
from getdeveloperlib import parse_developers # noqa: E402
|
||||
import cve as cvecheck # noqa: E402
|
||||
|
||||
|
||||
INFRA_RE = re.compile(r"\$\(eval \$\(([a-z-]*)-package\)\)")
|
||||
@@ -414,7 +413,7 @@ async def check_package_urls(packages):
|
||||
async with aiohttp.ClientSession(connector=connector, trust_env=True) as sess:
|
||||
packages = [p for p in packages if p.status['url'][0] == 'ok']
|
||||
for pkg in packages:
|
||||
tasks.append(check_url_status(sess, pkg, len(packages)))
|
||||
tasks.append(asyncio.ensure_future(check_url_status(sess, pkg, len(packages))))
|
||||
await asyncio.wait(tasks)
|
||||
|
||||
|
||||
@@ -532,7 +531,7 @@ async def check_package_latest_version(packages):
|
||||
async with aiohttp.ClientSession(connector=connector, trust_env=True) as sess:
|
||||
packages = [p for p in packages if p.has_valid_infra]
|
||||
for pkg in packages:
|
||||
tasks.append(check_package_latest_version_get(sess, pkg, len(packages)))
|
||||
tasks.append(asyncio.ensure_future(check_package_latest_version_get(sess, pkg, len(packages))))
|
||||
await asyncio.wait(tasks)
|
||||
|
||||
|
||||
@@ -950,7 +949,13 @@ def parse_args():
|
||||
|
||||
|
||||
def __main__():
|
||||
global cvecheck
|
||||
|
||||
args = parse_args()
|
||||
|
||||
if args.nvd_path:
|
||||
import cve as cvecheck
|
||||
|
||||
if args.packages:
|
||||
package_list = args.packages.split(",")
|
||||
elif args.configpackages:
|
||||
@@ -964,7 +969,7 @@ def __main__():
|
||||
print("Build package list ...")
|
||||
packages = get_pkglist(args.npackages, package_list)
|
||||
print("Getting developers ...")
|
||||
developers = parse_developers(brpath)
|
||||
developers = parse_developers()
|
||||
print("Build defconfig list ...")
|
||||
defconfigs = get_defconfig_list()
|
||||
for d in defconfigs:
|
||||
|
||||
Reference in New Issue
Block a user