diff options
| author | Karicheri, Muralidharan <[email protected]> | 2014-04-04 13:16:48 -0400 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2014-04-17 17:24:38 -0400 |
| commit | bf411ea9f11a757cb3916f3a2e9753f4e0208672 (patch) | |
| tree | 4ec13e08ba6b554951522d07204ca813b1de1d79 /common | |
| parent | 00c200f137b60a04b137e0c7f9097f87ea2ee755 (diff) | |
tools: mkimage: add support for gpimage format
This patch add support for gpimage format as a preparatory
patch for porting u-boot for keystone2 devices and is
based on omapimage format. It re-uses gph header to store the
size and loadaddr as done in omapimage.c
Signed-off-by: Vitaly Andrianov <[email protected]>
Signed-off-by: Murali Karicheri <[email protected]>
Acked-by: Tom Rini <[email protected]>
Diffstat (limited to 'common')
| -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 9c6bec5b769..fcc5a9c3e12 100644 --- a/common/image.c +++ b/common/image.c @@ -125,6 +125,7 @@ static const table_entry_t uimage_type[] = { { IH_TYPE_FILESYSTEM, "filesystem", "Filesystem Image", }, { IH_TYPE_FIRMWARE, "firmware", "Firmware", }, { IH_TYPE_FLATDT, "flat_dt", "Flat Device Tree", }, + { IH_TYPE_GPIMAGE, "gpimage", "TI Keystone SPL Image",}, { IH_TYPE_KERNEL, "kernel", "Kernel Image", }, { IH_TYPE_KERNEL_NOLOAD, "kernel_noload", "Kernel Image (no loading done)", }, { IH_TYPE_KWBIMAGE, "kwbimage", "Kirkwood Boot Image",}, |
