Upgrade buildroot to 2023.05 (from 2021.08.2), kernel is upgraded to 6.3 (from 5.13.19).

This commit is contained in:
PartialVolume
2023-07-05 19:35:21 +01:00
parent 654cfca2bf
commit 2ad6760d0f
8544 changed files with 208276 additions and 109881 deletions

View File

@@ -0,0 +1,13 @@
config BR2_PACKAGE_PYTHON_DISTRO
bool "python distro"
help
distro provides information about the OS distribution it
runs on, such as a reliable machine-readable ID, or version
information.
It is the recommended replacement for Python's original
platform.linux_distribution function (removed in Python
3.8). It also provides much more functionality which isn't
necessarily Python bound, like a command-line interface.
https://github.com/nir0s/distro

View File

@@ -0,0 +1,5 @@
# From https://pypi.org/pypi/distro/json
md5 a1e81972bbcfc0dc77dd0cde590c22a6 distro-1.8.0.tar.gz
sha256 02e111d1dc6a50abb8eed6bf31c3e48ed8b0830d1ea2a1b78c61765c2513fdd8 distro-1.8.0.tar.gz
# Locally computed
sha256 cb5e8e7e5f4a3988e1063c142c60dc2df75605f4c46515e776e3aca6df976e14 LICENSE

View File

@@ -0,0 +1,14 @@
################################################################################
#
# python-distro
#
################################################################################
PYTHON_DISTRO_VERSION = 1.8.0
PYTHON_DISTRO_SITE = https://files.pythonhosted.org/packages/4b/89/eaa3a3587ebf8bed93e45aa79be8c2af77d50790d15b53f6dfc85b57f398
PYTHON_DISTRO_SOURCE = distro-$(PYTHON_DISTRO_VERSION).tar.gz
PYTHON_DISTRO_LICENSE = Apache-2.0
PYTHON_DISTRO_LICENSE_FILES = LICENSE
PYTHON_DISTRO_SETUP_TYPE = setuptools
$(eval $(python-package))