diff options
author | Patrick Delaunay <patrick.delaunay@foss.st.com> | 2024-01-15 14:30:54 +0100 |
---|---|---|
committer | Patrice Chotard <patrice.chotard@foss.st.com> | 2024-01-19 15:10:06 +0100 |
commit | c2c2977227624a20f4a7d79e8abe0548b8acf626 (patch) | |
tree | 6b0a24ba682df319dd9f922a6f5e1862402aaddd | |
parent | 82f5942e51b96ffdfd689ec8b4cbfab5c9b15f7d (diff) | |
download | u-boot-c2c2977227624a20f4a7d79e8abe0548b8acf626.zip u-boot-c2c2977227624a20f4a7d79e8abe0548b8acf626.tar.gz u-boot-c2c2977227624a20f4a7d79e8abe0548b8acf626.tar.bz2 |
stm32mp: Add dependencies on CMDLINE for command stm32key
We cannot use stm32key commands without CONFIG_CMDLINE so add the
required condition.
Signed-off-by: Patrick Delaunay <patrick.delaunay@foss.st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@foss.st.com>
-rw-r--r-- | arch/arm/mach-stm32mp/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/mach-stm32mp/Kconfig b/arch/arm/mach-stm32mp/Kconfig index a1763ff..b9af03d 100644 --- a/arch/arm/mach-stm32mp/Kconfig +++ b/arch/arm/mach-stm32mp/Kconfig @@ -144,6 +144,7 @@ config STM32_ECDSA_VERIFY config CMD_STM32KEY bool "command stm32key to fuse public key hash" + depends on CMDLINE help fuse public key hash in corresponding fuse used to authenticate binary. |