diff options
author | Andrew F. Davis <afd@ti.com> | 2017-07-31 10:58:20 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-09-12 17:58:02 -0400 |
commit | 6442c9643e82966ae8fff391bab3fcc763662564 (patch) | |
tree | d34d4fac599ffe41623d96860bd2397d6526265d /common/image.c | |
parent | 7e3e20560784b048ff19e90cd36b6680626b1ab3 (diff) | |
download | u-boot-6442c9643e82966ae8fff391bab3fcc763662564.tar.gz |
image: Add TI PMMC image type
Add a new image type representing TI Power Management
Micro-Controller (PMMC) Firmware image type.
Signed-off-by: Andrew F. Davis <afd@ti.com>
Diffstat (limited to 'common/image.c')
-rw-r--r-- | common/image.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/image.c b/common/image.c index a058eb85e1..332b5f2843 100644 --- a/common/image.c +++ b/common/image.c @@ -167,6 +167,7 @@ static const table_entry_t uimage_type[] = { { IH_TYPE_FPGA, "fpga", "FPGA Image" }, { IH_TYPE_TEE, "tee", "Trusted Execution Environment Image",}, { IH_TYPE_FIRMWARE_IVT, "firmware_ivt", "Firmware with HABv4 IVT" }, + { IH_TYPE_PMMC, "pmmc", "TI Power Management Micro-Controller Firmware",}, { -1, "", "", }, }; |