forked from pool/python-spsdk
- update to 2.0.1:
* fix test memory AP address * Fix detection of input file for FCB in bootable image * fix IEE encryption for RT1180 * fix signed MBI for Anguilla Nano * fix SB21 export with yaml config * fix behavior of the RKTH registers * fix invalid names of CRC field in database * fix setting a register value as raw value when loading from configuration - update to 2.0.0: * dedicated plugin system * check of written data length in USB Interface * remove dependency on PyCryptodome * add rot command for calculating RoT hash * distinguish between fw version and image version * support YAML configuration for HAB * support build RT11xx image with ECC keys * support OSCCA * support AHAB NAND * implement HTTP Proxy Signature Provider * signature provider for OSCCA * add validation of signature in AHAB * support OTFAD for RT1010 * export HAB from yaml config in bootable image * revision of offsets in AHAB container * command filter in SB 2.1 based on family * refactor memory types for mbi * add to AHAB key identifier for encrypted images * pfr/ifr: OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-spsdk?expand=0&rev=6
This commit is contained in:
@@ -1,47 +0,0 @@
|
||||
From 835e24b7cd0b3ba6a62f0abfbb094ad7ee3ab524 Mon Sep 17 00:00:00 2001
|
||||
From: Johannes Kastl <kastl@b1-systems.de>
|
||||
Date: Mon, 15 May 2023 13:27:29 +0200
|
||||
Subject: [PATCH] remove pypemicro
|
||||
|
||||
based on
|
||||
https://github.com/archlinux/svntogit-community/blob/19938f5cab9adf93da26c09ebeb8111ed1bdc59b/trunk/python-spsdk-1.6.0-remove_pypemicro.patch
|
||||
|
||||
Signed-off-by: Johannes Kastl <kastl@b1-systems.de>
|
||||
---
|
||||
spsdk/debuggers/__init__.py | 1 -
|
||||
spsdk/debuggers/utils.py | 2 --
|
||||
2 files changed, 3 deletions(-)
|
||||
|
||||
diff --git a/spsdk/debuggers/__init__.py b/spsdk/debuggers/__init__.py
|
||||
index adefa19..52afffd 100644
|
||||
--- a/spsdk/debuggers/__init__.py
|
||||
+++ b/spsdk/debuggers/__init__.py
|
||||
@@ -9,5 +9,4 @@
|
||||
|
||||
from .debug_probe import DebugProbe
|
||||
from .debug_probe_jlink import DebugProbePyLink
|
||||
-from .debug_probe_pemicro import DebugProbePemicro
|
||||
from .debug_probe_pyocd import DebugProbePyOCD
|
||||
diff --git a/spsdk/debuggers/utils.py b/spsdk/debuggers/utils.py
|
||||
index c6ba667..ba22335 100644
|
||||
--- a/spsdk/debuggers/utils.py
|
||||
+++ b/spsdk/debuggers/utils.py
|
||||
@@ -16,7 +16,6 @@ import prettytable
|
||||
from spsdk import SPSDKError
|
||||
from spsdk.debuggers.debug_probe import DebugProbe, SPSDKDebugProbeError, SPSDKProbeNotFoundError
|
||||
from spsdk.debuggers.debug_probe_jlink import DebugProbePyLink
|
||||
-from spsdk.debuggers.debug_probe_pemicro import DebugProbePemicro
|
||||
|
||||
# Import all supported debug probe classes
|
||||
from spsdk.debuggers.debug_probe_pyocd import DebugProbePyOCD
|
||||
@@ -24,7 +23,6 @@ from spsdk.debuggers.debug_probe_pyocd import DebugProbePyOCD
|
||||
PROBES: Dict[str, Type[DebugProbe]] = {
|
||||
"pyocd": DebugProbePyOCD,
|
||||
"jlink": DebugProbePyLink,
|
||||
- "pemicro": DebugProbePemicro,
|
||||
}
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
--
|
||||
2.40.1
|
||||
|
Reference in New Issue
Block a user