summaryrefslogtreecommitdiff
path: root/include/image.h
diff options
context:
space:
mode:
authorSimon Glass <[email protected]>2025-03-05 17:25:10 -0700
committerTom Rini <[email protected]>2025-03-18 13:12:15 -0600
commitd6bb0ea535e4384ed1975ee9c755488f5036a79e (patch)
tree624c096808bd48231ecc22ea345ecb1d462f7a2e /include/image.h
parent098407e67390ed0c369029bab0777a51e5a7bad2 (diff)
boot: Support booti format in bootm
At present the booti format is handled separately, in its own command. Provide a way to boot uncompressed booti images within the bootm code, so that eventually we can boot these images without CONFIG_CMDLINE Update bootm_init() to attach the images for all formats which use them. Add some debugging while we are here. Signed-off-by: Simon Glass <[email protected]>
Diffstat (limited to 'include/image.h')
-rw-r--r--include/image.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/image.h b/include/image.h
index f8f2c887a4b..5b9bd6a9649 100644
--- a/include/image.h
+++ b/include/image.h
@@ -244,7 +244,7 @@ enum image_type_t {
* New IDs *MUST* be appended at the end of the list and *NEVER*
* inserted for backward compatibility.
*/
-enum {
+enum image_comp_t {
IH_COMP_NONE = 0, /* No Compression Used */
IH_COMP_GZIP, /* gzip Compression Used */
IH_COMP_BZIP2, /* bzip2 Compression Used */