diff options
author | Marek Vasut | 2018-05-13 00:22:54 +0200 |
---|---|---|
committer | Tom Rini | 2018-05-23 22:06:40 -0400 |
commit | 0298d2037542b4f56124d29995dc7435c6af8bd1 (patch) | |
tree | f36b45da9cddb9062d98623f8912f25f80e3ba50 /include/image.h | |
parent | a3c43b129eda9916714dfee98f88755f2bee7a82 (diff) |
fit: Add standalone image type handling
Just add IH_TYPE_STANDALONE to fit_get_image_type_property().
Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Pantelis Antoniou <pantelis.antoniou@konsulko.com>
Cc: Simon Glass <sjg@chromium.org>
Reviewed-by: Simon Glass <sjg@chromium.org>
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 925eb8b30f6..9522ee4d25f 100644 --- a/include/image.h +++ b/include/image.h @@ -922,6 +922,7 @@ int booti_setup(ulong image, ulong *relocated_addr, ulong *size); #define FIT_SETUP_PROP "setup" #define FIT_FPGA_PROP "fpga" #define FIT_FIRMWARE_PROP "firmware" +#define FIT_STANDALONE_PROP "standalone" #define FIT_MAX_HASH_LEN HASH_MAX_DIGEST_SIZE |