mirror of
https://github.com/u-boot/u-boot.git
synced 2024-11-24 12:44:23 +08:00
mkimage: fit: fix import of external data
The external data is located after the mmapped FDT pointed to by 'old_fdt', not in the newly created FDT we are importing into at 'fdt'. Signed-off-by: Patrick Oppenlander <patrick.oppenlander@gmail.com>
This commit is contained in:
parent
ef40129c33
commit
c995d854ef
@ -606,8 +606,8 @@ static int fit_import_data(struct image_tool_params *params, const char *fname)
|
||||
continue;
|
||||
debug("Importing data size %x\n", len);
|
||||
|
||||
ret = fdt_setprop(fdt, node, "data", fdt + data_base + buf_ptr,
|
||||
len);
|
||||
ret = fdt_setprop(fdt, node, "data",
|
||||
old_fdt + data_base + buf_ptr, len);
|
||||
if (ret) {
|
||||
debug("%s: Failed to write property: %s\n", __func__,
|
||||
fdt_strerror(ret));
|
||||
|
Loading…
Reference in New Issue
Block a user