Update buildroot to 2024.02.2, kernel to 6.6.2, GPU & DRM drivers, nwipe to v0.37 plus many others.

This commit is contained in:
PartialVolume
2024-05-17 17:38:43 +01:00
parent bb87d66c65
commit c000e2a83d
3975 changed files with 50769 additions and 113784 deletions

View File

@@ -0,0 +1,21 @@
config BR2_PACKAGE_PYTHON_GRPCIO_ARCH_SUPPORTS
bool
# see third_party/boringssl-with-bazel/src/include/openssl/target.h
default y if BR2_aarch64 || BR2_aarch64_be
default y if BR2_arm || BR2_armeb
default y if BR2_i386 || BR2_x86_64
default y if BR2_mips || BR2_mipsel || BR2_mips64 || BR2_mips64el
default y if BR2_riscv
config BR2_PACKAGE_PYTHON_GRPCIO
bool "python-grpcio"
depends on BR2_PACKAGE_PYTHON_GRPCIO_ARCH_SUPPORTS
depends on BR2_INSTALL_LIBSTDCPP
help
HTTP/2-based RPC framework.
https://grpc.io
comment "python-grpcio needs a toolchain w/ C++"
depends on BR2_PACKAGE_PYTHON_GRPCIO_ARCH_SUPPORTS
depends on !BR2_INSTALL_LIBSTDCPP

View File

@@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/grpcio/json
md5 480bfb7435426de392a883e6516aae79 grpcio-1.60.0.tar.gz
sha256 2199165a1affb666aa24adf0c97436686d0a61bc5fc113c037701fb7c7fceb96 grpcio-1.60.0.tar.gz
# Locally computed sha256 checksums
sha256 590198e3f305f2c347fde64d637c65492bbef554db6c8364e149cd375e3797ee LICENSE

View File

@@ -0,0 +1,14 @@
################################################################################
#
# python-grpcio
#
################################################################################
PYTHON_GRPCIO_VERSION = 1.60.0
PYTHON_GRPCIO_SOURCE = grpcio-$(PYTHON_GRPCIO_VERSION).tar.gz
PYTHON_GRPCIO_SITE = https://files.pythonhosted.org/packages/61/38/c615b5c2be690fb31871f294cc08a96e598b085b8d07c5967a5018e0b90c
PYTHON_GRPCIO_SETUP_TYPE = setuptools
PYTHON_GRPCIO_LICENSE = Apache-2.0
PYTHON_GRPCIO_LICENSE_FILES = LICENSE
$(eval $(python-package))