mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
tools: fit_image: Add the loadable property to configs
When running mkimage with "-f auto", the loadable property needs to be set in order to allow SPL FIT support to boot. Signed-off-by: Abel Vesa <abel.vesa@nxp.com> Tested-by: Fabio Estevam <festevam@gmail.com>
This commit is contained in:
parent
cf8dcc5d02
commit
cabde449b9
1 changed files with 1 additions and 0 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue