diff options
author | Jorge Ramirez-Ortiz <jorge@foundries.io> | 2021-02-14 16:27:24 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-03-13 13:14:52 -0500 |
commit | 26839e5ddee369ea68acd8cbc8e24c7180c17e82 (patch) | |
tree | 00c969a8b64ccbb92d5447ec3bd895acbf6a952a /cmd/Makefile | |
parent | 166363f2ed9e72ed3e2bf09d9317d6a5fdafcbea (diff) | |
download | u-boot-26839e5ddee369ea68acd8cbc8e24c7180c17e82.tar.gz |
cmd: SCP03: enable and provision command
Enable and provision the SCP03 keys on a TEE controlled secured elemt
from the U-Boot shell.
Executing this command will generate and program new SCP03 encryption
keys on the secure element NVM.
Depending on the TEE implementation, the keys would then be stored in
some persistent storage or better derived from some platform secret
(so they can't be lost).
Signed-off-by: Jorge Ramirez-Ortiz <jorge@foundries.io>
Reviewed-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Igor Opaniuk <igor.opaniuk@foundries.io>
Diffstat (limited to 'cmd/Makefile')
-rw-r--r-- | cmd/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cmd/Makefile b/cmd/Makefile index 176bf925fd..a7017e8452 100644 --- a/cmd/Makefile +++ b/cmd/Makefile @@ -193,6 +193,9 @@ obj-$(CONFIG_CMD_BLOB) += blob.o # Android Verified Boot 2.0 obj-$(CONFIG_CMD_AVB) += avb.o +# Foundries.IO SCP03 +obj-$(CONFIG_CMD_SCP03) += scp03.o + obj-$(CONFIG_ARM) += arm/ obj-$(CONFIG_RISCV) += riscv/ obj-$(CONFIG_SANDBOX) += sandbox/ |