initial buildroot for linux 5.15

This commit is contained in:
Huan.Feng
2021-12-06 14:12:13 +08:00
parent d7767d594e
commit 7b6fc358fa
12736 changed files with 508822 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
config BR2_PACKAGE_PYTHON_ESPTOOL
bool "python-esptool"
select BR2_PACKAGE_PYTHON_ECDSA # runtime
select BR2_PACKAGE_PYTHON_PYAES # runtime
select BR2_PACKAGE_PYTHON_SERIAL # runtime
select BR2_PACKAGE_PYTHON_ZLIB if BR2_PACKAGE_PYTHON
select BR2_PACKAGE_PYTHON3_ZLIB if BR2_PACKAGE_PYTHON3
help
A serial utility to communicate & flash code to Espressif
ESP8266 & ESP32 chips.
https://github.com/espressif/esptool
@@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/esptool/json
md5 84aa6ffb4723b1f59a2c83244a9ad918 esptool-3.2.tar.gz
sha256 9638ff11c68e621e08e7c3335d4fd9d70b2ddcf7caae778073cd8cc27be1216f esptool-3.2.tar.gz
# Locally computed sha256 checksums
sha256 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643 LICENSE
+14
View File
@@ -0,0 +1,14 @@
################################################################################
#
# python-esptool
#
################################################################################
PYTHON_ESPTOOL_VERSION = 3.2
PYTHON_ESPTOOL_SOURCE = esptool-$(PYTHON_ESPTOOL_VERSION).tar.gz
PYTHON_ESPTOOL_SITE = https://files.pythonhosted.org/packages/60/a4/33907f5b735f9179061bd6b6cae7123d4a2d0cdf46c879fa55e66edef24f
PYTHON_ESPTOOL_SETUP_TYPE = setuptools
PYTHON_ESPTOOL_LICENSE = GPL-2.0+
PYTHON_ESPTOOL_LICENSE_FILES = LICENSE
$(eval $(python-package))