diff options
| author | Marc Kleine-Budde <[email protected]> | 2022-11-23 12:55:33 +0100 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2022-12-08 09:29:02 -0500 |
| commit | 28f924f2650ed2229fd712620c36a41dc0610fcb (patch) | |
| tree | f8981b94d7d7026324a8e8032644d656e0008699 /include | |
| parent | 72c3f5dbd9545259a7eb04a7d21dff9b318de77e (diff) | |
tools: mkimage: add new image type "fdt_legacy"
If the user select the image type "flat_dt" a FIT image will be build.
This breaks the legacy use case of putting a Flat Device Tree into a
legacy u-boot image.
Add a new image type "fdt_legacy" to build a legacy u-boot image
with a "flat_dt" type.
Link: https://lore.kernel.org/all/[email protected]
Signed-off-by: Marc Kleine-Budde <[email protected]>
Reviewed-by: Sean Anderson <[email protected]>
Diffstat (limited to 'include')
| -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 6f21dafba8c..b6a809834ad 100644 --- a/include/image.h +++ b/include/image.h @@ -229,6 +229,7 @@ enum image_type_t { IH_TYPE_COPRO, /* Coprocessor Image for remoteproc*/ IH_TYPE_SUNXI_EGON, /* Allwinner eGON Boot Image */ IH_TYPE_SUNXI_TOC0, /* Allwinner TOC0 Boot Image */ + IH_TYPE_FDT_LEGACY, /* Binary Flat Device Tree Blob in a Legacy Image */ IH_TYPE_COUNT, /* Number of image types */ }; |
