diff --git a/common/image-fit.c b/common/image-fit.c index 37fa0c8ab9..f52eec0cc2 100644 --- a/common/image-fit.c +++ b/common/image-fit.c @@ -1918,6 +1918,8 @@ static const char *fit_get_image_type_property(int type) return FIT_LOADABLE_PROP; case IH_TYPE_FPGA: return FIT_FPGA_PROP; + case IH_TYPE_STANDALONE: + return FIT_STANDALONE_PROP; } return "unknown"; diff --git a/include/image.h b/include/image.h index 38a4410ccc..57d55e7a9a 100644 --- a/include/image.h +++ b/include/image.h @@ -937,6 +937,7 @@ int bootz_setup(ulong image, ulong *start, ulong *end); #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