forked from pool/python-esptool
* `ESP32-S3 USB-Serial/JTAG`: Fix incorrect RTC WDT registers
to avoid resets during flashing.
- update to 4.6:
* Added the option to specify `ALL` as a size argument in
`read_flash` and `erase_region` to perform said operation
until the end of the flash memory.
* `image_info`: Display the WP pin state in human-readable
form.
* `image_info`: Display chip type based on Chip ID, if
available.
* `ESP32-C6` and `ESP32-H2`: Added support for reading 64-bit
MAC address.
* Added efuse description YAML files for all chips.
* `ECDSA_KEY`: Added support for burning from PEM file.
* `burn_key` and `burn_key_digest`: Hide sensitive info during
burning by default.
* Added support for external `esp` instance.
* Improved efuse error viewing.
* `ESP32-H2`: Added RF Calibration Information.
* Fixed `01060000: Operation or feature not supported` error
by setting flash parameters even with `--flash_size keep`.
* `USB-Serial/JTAG`: Autofeed super watchdog (SWD) to avoid
resets during flashing.
* `USB-Serial/JTAG`: Fixed failing reset sequence on COM ports
>= 10 due to PID detection error.
* `ESP32-C6`: Fixed `get_pkg_version` and
`get_{major,minor}_chip_version`.
* `image_info`: Removed check that reserved bytes in the image
header are zero, which would break chip type autodetection.
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-esptool?expand=0&rev=20
100 lines
3.3 KiB
RPMSpec
100 lines
3.3 KiB
RPMSpec
#
|
|
# spec file for package python-esptool
|
|
#
|
|
# Copyright (c) 2023 SUSE LLC
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: python-esptool
|
|
Version: 4.6.1
|
|
Release: 0
|
|
Summary: A serial utility to communicate & flash code to Espressif ESP8266 & ESP32 chips
|
|
License: GPL-2.0-or-later
|
|
Group: Development/Languages/Python
|
|
URL: https://github.com/espressif/esptool
|
|
Source: https://github.com/espressif/esptool/archive/v%{version}.tar.gz#/esptool-%{version}.tar.gz
|
|
BuildRequires: %{python_module base >= 3.7}
|
|
BuildRequires: %{python_module bitstring >= 3.1.6}
|
|
BuildRequires: %{python_module ecdsa >= 0.16.0}
|
|
BuildRequires: %{python_module pyaes}
|
|
BuildRequires: %{python_module pyelftools}
|
|
BuildRequires: %{python_module pyserial >= 3.0}
|
|
BuildRequires: %{python_module pytest}
|
|
BuildRequires: %{python_module reedsolo >= 1.5.3}
|
|
BuildRequires: %{python_module setuptools}
|
|
%if 0%{?python_version_nodots} < 37
|
|
BuildRequires: %{python_module cryptography}
|
|
%endif
|
|
BuildRequires: fdupes
|
|
BuildRequires: openssl
|
|
BuildRequires: python-rpm-macros
|
|
Requires: python-ecdsa >= 0.16.0
|
|
Requires: python-pyaes
|
|
Requires: python-pyserial >= 3.0
|
|
Requires(post): update-alternatives
|
|
Requires(postun):update-alternatives
|
|
BuildArch: noarch
|
|
%python_subpackages
|
|
|
|
%description
|
|
A command line utility to communicate with the ROM bootloader in Espressif ESP8266 & ESP32 microcontrollers.
|
|
|
|
Allows flashing firmware, reading back firmware, querying chip parameters, etc.
|
|
|
|
%prep
|
|
%setup -q -n esptool-%{version}
|
|
sed -i '/^#!/d' flasher_stub/*.py
|
|
|
|
%build
|
|
%python_build
|
|
|
|
%install
|
|
%python_install
|
|
%python_clone -a %{buildroot}%{_bindir}/espefuse.py
|
|
%python_clone -a %{buildroot}%{_bindir}/espsecure.py
|
|
%python_clone -a %{buildroot}%{_bindir}/esptool.py
|
|
%python_clone -a %{buildroot}%{_bindir}/esp_rfc2217_server.py
|
|
%python_expand rm -rf %{buildroot}%{$python_sitelib}/__pycache__/*.pyc
|
|
|
|
%check
|
|
# there are more tests but upstream runs only those in .travis.yml
|
|
%pytest test/test_imagegen.py
|
|
%pytest test/test_espsecure.py
|
|
|
|
%post
|
|
%python_install_alternative espefuse.py
|
|
%python_install_alternative espsecure.py
|
|
%python_install_alternative esptool.py
|
|
%python_install_alternative esp_rfc2217_server.py
|
|
|
|
%postun
|
|
%python_uninstall_alternative espefuse.py
|
|
%python_uninstall_alternative espsecure.py
|
|
%python_uninstall_alternative esptool.py
|
|
%python_uninstall_alternative esp_rfc2217_server.py
|
|
|
|
%files %{python_files}
|
|
%license LICENSE
|
|
%doc README.md
|
|
%python_alternative %{_bindir}/esptool.py
|
|
%python_alternative %{_bindir}/espsecure.py
|
|
%python_alternative %{_bindir}/espefuse.py
|
|
%python_alternative %{_bindir}/esp_rfc2217_server.py
|
|
%{python_sitelib}/esptool-%{version}-*egg-info
|
|
%{python_sitelib}/esptool
|
|
%{python_sitelib}/espsecure
|
|
%{python_sitelib}/espefuse
|
|
|
|
%changelog
|