diff options
author | Tom Rini <trini@konsulko.com> | 2019-03-22 19:09:58 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-03-22 19:09:58 -0400 |
commit | cfb3e102c4bdf96a41cbd3eeb1d3a9a56c69c46c (patch) | |
tree | 5951f299b8b05cb6011deb8522a8b883a5d260e2 /tools | |
parent | 7b80644e271544848db90fb0407d67b3e3749a8e (diff) | |
parent | 2e7365518acdb8fb6e9be332c8a6c57b457188d9 (diff) |
Merge branch '2019-03-22-master-imports'
- Don't attempt to write to ext4 volumes with the metadata_csum feature
we don't support
- Correct how we build dtb files.
- Fix regression on SPL_FIT with FIT_IMAGE_TINY
- Minor TI platform fixes
Diffstat (limited to 'tools')
-rw-r--r-- | tools/fit_image.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/fit_image.c b/tools/fit_image.c index 4b626354fb..3b867e0656 100644 --- a/tools/fit_image.c +++ b/tools/fit_image.c @@ -298,6 +298,7 @@ static void fit_write_configs(struct image_tool_params *params, char *fdt) typename = genimg_get_type_short_name(params->fit_image_type); snprintf(str, sizeof(str), "%s-1", typename); fdt_property_string(fdt, typename, str); + fdt_property_string(fdt, FIT_LOADABLE_PROP, str); if (params->fit_ramdisk) fdt_property_string(fdt, FIT_RAMDISK_PROP, |