mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2026-05-04 20:26:13 +02:00
Commit 488445cefa1 ("doc: Move FIT into its own directory") moved the
documentation in doc/uImage.FIT to doc/usage/fit, subsequently all
documents and example sources have been converted to reStructuredText.
Fix (almost) all of the remaining occurrences of the old path and
filenames across the tree.
The exception is doc/uImage.FIT/command_syntax_extensions.txt which
apparently has been removed entirely, or at least I was unable to
locate where that document is now.
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
25 lines
707 B
Plaintext
25 lines
707 B
Plaintext
config ECDSA
|
|
bool "Enable ECDSA support"
|
|
depends on DM
|
|
help
|
|
This enables the ECDSA (elliptic curve signature) algorithm for FIT
|
|
image verification in U-Boot. The ECDSA algorithm is implemented
|
|
using the driver model, so CONFIG_DM is required by this library.
|
|
See doc/usage/fit/signature.rst for more details.
|
|
ECDSA is enabled for mkimage regardless of this option.
|
|
|
|
if ECDSA
|
|
|
|
config ECDSA_VERIFY
|
|
bool "Enable ECDSA verification support in U-Boot."
|
|
help
|
|
Allow ECDSA signatures to be recognized and verified in U-Boot.
|
|
|
|
config SPL_ECDSA_VERIFY
|
|
bool "Enable ECDSA verification support in SPL"
|
|
depends on SPL
|
|
help
|
|
Allow ECDSA signatures to be recognized and verified in SPL.
|
|
|
|
endif
|