diff options
author | Patrick Delaunay <patrick.delaunay@st.com> | 2018-03-12 10:46:04 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-03-19 16:14:19 -0400 |
commit | 81260e3331d52e08c3f4709043c931a3fdd62095 (patch) | |
tree | 5f9423e22732a36d544d4be5b1c19e51d81891f0 /include/image.h | |
parent | dbc34323796bfc37116a7a28e93bcc5bea5fb136 (diff) | |
download | u-boot-81260e3331d52e08c3f4709043c931a3fdd62095.tar.gz |
tools/mkimage: add support for STM32 image format
STM32MP157 bootrom needs a specific header for first boot stage.
This patch adds support of this header in mkimage.
Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Diffstat (limited to 'include/image.h')
-rw-r--r-- | include/image.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/image.h b/include/image.h index 88e17fc91e..4c278c7263 100644 --- a/include/image.h +++ b/include/image.h @@ -272,6 +272,7 @@ enum { IH_TYPE_TEE, /* Trusted Execution Environment OS Image */ IH_TYPE_FIRMWARE_IVT, /* Firmware Image with HABv4 IVT */ IH_TYPE_PMMC, /* TI Power Management Micro-Controller Firmware */ + IH_TYPE_STM32IMAGE, /* STMicroelectronics STM32 Image */ IH_TYPE_COUNT, /* Number of image types */ }; |