aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--common/image-fit.c2
-rw-r--r--include/image.h1
2 files changed, 3 insertions, 0 deletions
diff --git a/common/image-fit.c b/common/image-fit.c
index e3577e2dd73..8c15ed1d96c 100644
--- a/common/image-fit.c
+++ b/common/image-fit.c
@@ -1725,6 +1725,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 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