Skip to content

Commit

Permalink
fw_info: Fix AT LEAST with underscore
Browse files Browse the repository at this point in the history
Prevents compliance from complaining

Signed-off-by: Jamie McCrae <[email protected]>
  • Loading branch information
nordicjm committed Nov 29, 2024
1 parent bcb0548 commit a07eb95
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions subsys/bootloader/bl_crypto/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ config SB_CRYPTO_CC310_ECDSA_SECP256R1

config SB_CRYPTO_CLIENT_ECDSA_SECP256R1
bool "Use another image's ECDSA secp256r1 implementation"
select BL_SECP256R1_EXT_API_ATLEAST_REQUIRED
select BL_SECP256R1_EXT_API_AT_LEAST_REQUIRED
select SB_ECDSA_SECP256R1
help
Using EXT_APIs from fw_info.
Expand Down Expand Up @@ -130,7 +130,7 @@ config SB_CRYPTO_CC310_SHA256

config SB_CRYPTO_CLIENT_SHA256
bool "Use another image's SHA256 implementation"
select BL_SHA256_EXT_API_ATLEAST_REQUIRED
select BL_SHA256_EXT_API_AT_LEAST_REQUIRED
select SB_SHA256
help
Using EXT_APIs from fw_info.
Expand Down
8 changes: 4 additions & 4 deletions subsys/fw_info/Kconfig.template.fw_info_ext_api
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ choice

config $(EXT_API)_EXT_API_UNUSED
bool "Don't request the $(EXT_API) EXT_API"
depends on !$(EXT_API)_EXT_API_ATLEAST_OPTIONAL && !$(EXT_API)_EXT_API_ATLEAST_REQUIRED
depends on !$(EXT_API)_EXT_API_AT_LEAST_OPTIONAL && !$(EXT_API)_EXT_API_AT_LEAST_REQUIRED
help
Do not include the client code for this external API (EXT_API).

config $(EXT_API)_EXT_API_OPTIONAL
bool "Request to use the $(EXT_API) EXT_API (optional)"
depends on !$(EXT_API)_EXT_API_ATLEAST_REQUIRED
depends on !$(EXT_API)_EXT_API_AT_LEAST_REQUIRED
help
Include client code for this EXT_API. This also puts a request for
this EXT_API into the firmware info, marked as optional. The user must
Expand All @@ -29,12 +29,12 @@ config $(EXT_API)_EXT_API_REQUIRED
this EXT_API into the firmware info, marked as required.
endchoice

config $(EXT_API)_EXT_API_ATLEAST_OPTIONAL
config $(EXT_API)_EXT_API_AT_LEAST_OPTIONAL
bool
help
Can be selected to force at least OPTIONAL

config $(EXT_API)_EXT_API_ATLEAST_REQUIRED
config $(EXT_API)_EXT_API_AT_LEAST_REQUIRED
bool
help
Can be selected to force REQUIRED
Expand Down

0 comments on commit a07eb95

Please sign in to comment.