summaryrefslogtreecommitdiff
path: root/common/image.c
diff options
context:
space:
mode:
authorAndrew F. Davis <afd@ti.com>2016-11-29 22:33:21 (GMT)
committerTom Rini <trini@konsulko.com>2016-12-03 18:21:20 (GMT)
commit7e719ee7d8eb61f459a38f69a825823603879258 (patch)
tree1d41c69ca7780d29205db617572c4fedc30cf3cd /common/image.c
parentd7be50921ed35e36e000a5e8daba41701a5eebb9 (diff)
downloadu-boot-7e719ee7d8eb61f459a38f69a825823603879258.tar.xz
image: Add Trusted Execution Environment image type
Add a new image type representing Trusted Execution Environment (TEE) image types. For example, an OP-TEE OS binary image. Signed-off-by: Andrew F. Davis <afd@ti.com> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common/image.c')
-rw-r--r--common/image.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/common/image.c b/common/image.c
index 2aac90d..bd07e86 100644
--- a/common/image.c
+++ b/common/image.c
@@ -165,6 +165,7 @@ static const table_entry_t uimage_type[] = {
{ IH_TYPE_ZYNQIMAGE, "zynqimage", "Xilinx Zynq Boot Image" },
{ IH_TYPE_ZYNQMPIMAGE, "zynqmpimage", "Xilinx ZynqMP Boot Image" },
{ IH_TYPE_FPGA, "fpga", "FPGA Image" },
+ { IH_TYPE_TEE, "tee", "Trusted Execution Environment Image",},
{ -1, "", "", },
};