diff options
author | Albert ARIBAUD \(3ADEV\) <albert.aribaud@3adev.fr> | 2016-09-26 09:08:06 +0200 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2016-10-06 09:06:16 +0200 |
commit | ed0c2c0a9ead7d1b5739fc83cf99ac85a16cb979 (patch) | |
tree | 9437126325051f9ad0fd04eddbbc48c12f9b5afa /include/image.h | |
parent | 303a24435f3e4b39a6b526ca2a32cd0452713153 (diff) | |
download | u-boot-ed0c2c0a9ead7d1b5739fc83cf99ac85a16cb979.tar.gz |
tools: mkimage: add support for Vybrid image format
This format can be flashed directly at address 0 of
the NAND FLASH, as it contains all necessary headers.
Signed-off-by: Albert ARIBAUD (3ADEV) <albert.aribaud@3adev.fr>
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 64da722649..2b1296c86c 100644 --- a/include/image.h +++ b/include/image.h @@ -278,6 +278,7 @@ enum { IH_TYPE_ZYNQIMAGE, /* Xilinx Zynq Boot Image */ IH_TYPE_ZYNQMPIMAGE, /* Xilinx ZynqMP Boot Image */ IH_TYPE_FPGA, /* FPGA Image */ + IH_TYPE_VYBRIDIMAGE, /* VYBRID .vyb Image */ IH_TYPE_COUNT, /* Number of image types */ }; |