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

@@ -1,10 +1,6 @@
config BR2_PACKAGE_PYTHON_BROTLI
bool "python-brotli"
depends on BR2_INSTALL_LIBSTDCPP
help
Python bindings for the Brotli compression library.
https://github.com/google/brotli
comment "python-brotli needs a toolchain w/ C++"
depends on !BR2_INSTALL_LIBSTDCPP

View File

@@ -1,5 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/brotli/json
md5 08f1f098697c64aa4596468b556d0c94 Brotli-1.0.9.zip
sha256 4d1b810aa0ed773f81dceda2cc7b403d01057458730e309856356d4ef4188438 Brotli-1.0.9.zip
md5 908d109a0309c33b626d01137eb4a060 Brotli-1.1.0.tar.gz
sha256 81de08ac11bcb85841e440c13611c00b67d3bf82698314928d0b676362546724 Brotli-1.1.0.tar.gz
# Locally computed sha256 checksums
sha256 3d180008e36922a4e8daec11c34c7af264fed5962d07924aea928c38e8663c94 LICENSE

View File

@@ -4,9 +4,9 @@
#
################################################################################
PYTHON_BROTLI_VERSION = 1.0.9
PYTHON_BROTLI_SOURCE = Brotli-$(PYTHON_BROTLI_VERSION).zip
PYTHON_BROTLI_SITE = https://files.pythonhosted.org/packages/2a/18/70c32fe9357f3eea18598b23aa9ed29b1711c3001835f7cf99a9818985d0
PYTHON_BROTLI_VERSION = 1.1.0
PYTHON_BROTLI_SOURCE = Brotli-$(PYTHON_BROTLI_VERSION).tar.gz
PYTHON_BROTLI_SITE = https://files.pythonhosted.org/packages/2f/c2/f9e977608bdf958650638c3f1e28f85a1b075f075ebbe77db8555463787b
PYTHON_BROTLI_SETUP_TYPE = setuptools
PYTHON_BROTLI_LICENSE = MIT
PYTHON_BROTLI_LICENSE_FILES = LICENSE
@@ -19,10 +19,4 @@ endif
PYTHON_BROTLI_ENV = CFLAGS="$(PYTHON_BROTLI_CFLAGS)"
define PYTHON_BROTLI_EXTRACT_CMDS
$(UNZIP) -d $(@D) $(PYTHON_BROTLI_DL_DIR)/$(PYTHON_BROTLI_SOURCE)
mv $(@D)/Brotli-$(PYTHON_BROTLI_VERSION)/* $(@D)
$(RM) -r $(@D)/Brotli-$(PYTHON_BROTLI_VERSION)
endef
$(eval $(python-package))