Skip to content

Commit

Permalink
Merge branch 'fix/disable_ecdsa_key_manager_for_p4_v5.3' into 'releas…
Browse files Browse the repository at this point in the history
…e/v5.3'

fix(soc): Disable key manager and ECDSA peripheral support for esp32p4 (v5.3)

See merge request espressif/esp-idf!31768
  • Loading branch information
AdityaHPatwardhan committed Jul 5, 2024
2 parents 33c3d32 + a56a4b8 commit 42cf452
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions components/soc/esp32p4/include/soc/Kconfig.soc_caps.in
Original file line number Diff line number Diff line change
Expand Up @@ -189,11 +189,11 @@ config SOC_ECC_EXTENDED_MODES_SUPPORTED

config SOC_ECDSA_SUPPORTED
bool
default y
default n

config SOC_KEY_MANAGER_SUPPORTED
bool
default y
default n

config SOC_FLASH_ENC_SUPPORTED
bool
Expand Down
4 changes: 2 additions & 2 deletions components/soc/esp32p4/include/soc/soc_caps.h
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@
#define SOC_DIG_SIGN_SUPPORTED 1
#define SOC_ECC_SUPPORTED 1
#define SOC_ECC_EXTENDED_MODES_SUPPORTED 1
#define SOC_ECDSA_SUPPORTED 1
#define SOC_KEY_MANAGER_SUPPORTED 1
#define SOC_ECDSA_SUPPORTED 0
#define SOC_KEY_MANAGER_SUPPORTED 0
#define SOC_FLASH_ENC_SUPPORTED 1
#define SOC_SECURE_BOOT_SUPPORTED 1
#define SOC_BOD_SUPPORTED 1
Expand Down

0 comments on commit 42cf452

Please sign in to comment.