15
0

- update to 4.8.1:

* Add esp32c2 eco4 rom magic value
  * Correctly exclude the unwanted sub/modules
  * Supports wafer efuse versions for esp32c61
  * add new command SFDP read
  * Add option to retry connection in a loop
  * Updates efuse table for esp32c5
  * Updates efuse table for esp32p4
  * Added stub flasher support
  * add autocompletions
  * allow picking UART by VID/PID/Name
  * Add USB-serial/JTAG stub support
  * Add UART stub support
  * Print key_purpose name for get_security_info cmd
  * Adds support extend efuse table by user CSV
    file* separated(default) and united(new)
  * Adds incompatible eFuse settings check for S3
  * Apply reconnections to the whole reset sequence,
    not line transitions
  * Automatically reconnect if port disconnects during reset
  * Add ECO1 magic number
  * Add support for secure boot v2 using
    ECDSA-P384 signatures
  * retry flashing if chip disconnects
  * Allow filtering efuses based on command line arguments
  * Enable context manager for esp instances
  * Added check for correctness of written data
  * Improves help for burn_efuse cmd
  * clear boot control register on hard reset
  * add spi-connection restriction to ROM class

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-esptool?expand=0&rev=28
This commit is contained in:
2024-11-30 09:43:18 +00:00
committed by Git OBS Bridge
parent 31dff4e4e0
commit 9aad804fd0
4 changed files with 72 additions and 9 deletions

View File

@@ -1,3 +1,60 @@
-------------------------------------------------------------------
Sat Nov 30 09:40:57 UTC 2024 - Dirk Müller <dmueller@suse.com>
- update to 4.8.1:
* Add esp32c2 eco4 rom magic value
* Correctly exclude the unwanted sub/modules
* Supports wafer efuse versions for esp32c61
* add new command SFDP read
* Add option to retry connection in a loop
* Updates efuse table for esp32c5
* Updates efuse table for esp32p4
* Added stub flasher support
* add autocompletions
* allow picking UART by VID/PID/Name
* Add USB-serial/JTAG stub support
* Add UART stub support
* Print key_purpose name for get_security_info cmd
* Adds support extend efuse table by user CSV
file* separated(default) and united(new)
* Adds incompatible eFuse settings check for S3
* Apply reconnections to the whole reset sequence,
not line transitions
* Automatically reconnect if port disconnects during reset
* Add ECO1 magic number
* Add support for secure boot v2 using
ECDSA-P384 signatures
* retry flashing if chip disconnects
* Allow filtering efuses based on command line arguments
* Enable context manager for esp instances
* Added check for correctness of written data
* Improves help for burn_efuse cmd
* clear boot control register on hard reset
* add spi-connection restriction to ROM class
* add UF2 IDs for ESP32-C5 and ESP32-C61
* Updates efuses for C5 and C61
* add c61 basic flash support (no_stub)
* skipped the stub check for esp32c5 mp
* base support of esp32c5 mp (no stub)
* Added warning when secure boot enabled
* Recalculated SHA digest for image binary
* print flash voltage in flash_id command
* Adds wafer and pkg versions
* Update adc_info commands for all chips
* Adds new efuses for esp32p4
* Allow the espefuse.py to work when coding
scheme == 3
* Add ROM bootloader flash error definitions
* Use ruff instead of flake8 and black both in pre-commit and
CI
* Enable USB-serial/JTAG in flasher stub
* Postpone some efuses to burn them at the very end
* add advisory port locking
* check_error --recover chip even if there are num_errors
* Adds new efuses for esp32c6 and esp32h2
* add target esp32c5 beta3
* Bug Fixes
-------------------------------------------------------------------
Wed Aug 14 15:14:39 UTC 2024 - Dirk Müller <dmueller@suse.com>