diff options
author | Siva Durga Prasad Paladugu <siva.durga.paladugu@xilinx.com> | 2018-02-28 13:26:53 +0530 |
---|---|---|
committer | Michal Simek <michal.simek@xilinx.com> | 2018-03-23 09:36:15 +0100 |
commit | c436bf92f6bf4014710bfeb067a0a35692e68bd3 (patch) | |
tree | 86b4cbc163bcf1df6c5a307ff0b16e115d921d08 /board/xilinx/zynqmp/Makefile | |
parent | 348dbf4368735c9c0a6e0a42ffff46521370dd1f (diff) | |
download | u-boot-c436bf92f6bf4014710bfeb067a0a35692e68bd3.tar.gz u-boot-c436bf92f6bf4014710bfeb067a0a35692e68bd3.tar.xz u-boot-c436bf92f6bf4014710bfeb067a0a35692e68bd3.zip |
arm64: zynqmp: Add support for verifying secure images
This patch adds new command "zynqmp" to handle zynqmp
specific commands like "zynqmp secure". This secure command is
used for verifying zynqmp specific secure images. The secure
image can either be authenticated or encrypted or both encrypted
and authenticated. The secure image is prepared using bootgen
and will be in xilinx specific BOOT.BIN format. The optional
key can be used for decryption of encrypted image if user
key was specified while creation BOOT.BIN.
Signed-off-by: Siva Durga Prasad Paladugu <sivadur@xilinx.com>
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Diffstat (limited to 'board/xilinx/zynqmp/Makefile')
-rw-r--r-- | board/xilinx/zynqmp/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/board/xilinx/zynqmp/Makefile b/board/xilinx/zynqmp/Makefile index 75aab92f04..3b7a10e202 100644 --- a/board/xilinx/zynqmp/Makefile +++ b/board/xilinx/zynqmp/Makefile @@ -26,6 +26,10 @@ ifneq ($(call ifdef_any_of, CONFIG_ZYNQMP_PSU_INIT_ENABLED CONFIG_SPL_BUILD),) obj-y += $(init-objs) endif +ifndef CONFIG_SPL_BUILD +obj-$(CONFIG_CMD_ZYNQMP) += cmds.o +endif + # Suppress "warning: function declaration isn't a prototype" CFLAGS_REMOVE_psu_init_gpl.o := -Wstrict-prototypes |