Bump buildroot to 2019.02

This commit is contained in:
2019-03-28 22:49:48 +01:00
parent 5598b1b762
commit 920d307141
5121 changed files with 78550 additions and 46132 deletions

View File

@@ -2,6 +2,7 @@ config BR2_PACKAGE_WEBKITGTK_ARCH_SUPPORTS
bool
# ARM needs BLX, so v5t+, BE completely untested so disabled
default y if BR2_arm && !BR2_ARM_CPU_ARMV4
default y if BR2_aarch64 || BR2_aarch64_be
default y if BR2_i386 || BR2_x86_64
# Disabled on MIPS big endian due to sigbus
default y if BR2_mipsel || BR2_mips64el
@@ -11,6 +12,22 @@ config BR2_PACKAGE_WEBKITGTK_ARCH_SUPPORTS
depends on BR2_TOOLCHAIN_HAS_SYNC_4
depends on BR2_PACKAGE_LIBGPG_ERROR_ARCH_SUPPORTS # libgcrypt
config BR2_PACKAGE_WEBKITGTK_ARCH_SUPPORTS_JIT
bool
# ARM needs NEON for JIT.
default y if BR2_ARM_CPU_HAS_NEON
# AArch64 is supported upstream but not well tested on big-endian mode.
default y if BR2_aarch64
# i386 & x86_64 don't have any special requirements.
default y if BR2_i386
default y if BR2_x86_64
# JIT is known not to work on MIPS64.
# Plain MIPS32 (pre R2) is not well tested and likely broken, and R6
# is unsupported, see https://bugs.webkit.org/show_bug.cgi?id=191258
# The MIPS support is completely untested in big-endian mode.
default y if BR2_mipsel && BR2_MIPS_CPU_MIPS32R2
default y if BR2_mipsel && BR2_MIPS_CPU_MIPS32R5
comment "webkitgtk needs libgtk3 and a glibc toolchain w/ C++, gcc >= 6, host gcc >= 4.8"
depends on BR2_PACKAGE_WEBKITGTK_ARCH_SUPPORTS
depends on !BR2_PACKAGE_LIBGTK3 || !BR2_INSTALL_LIBSTDCPP || \