9
0
Fork 0

bootm: restore load DT message for plain oftree files

This message was dropped when reorganizing the DT loading code,
and it's really confusing to miss this.

Signed-off-by: Lucas Stach <l.stach@pengutronix.de>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Lucas Stach 2016-02-12 17:58:22 +01:00 committed by Sascha Hauer
parent 0f1c0c4d30
commit b80ff0f035
1 changed files with 1 additions and 0 deletions

View File

@ -336,6 +336,7 @@ int bootm_load_devicetree(struct image_data *data, unsigned long load_address)
ret = bootm_open_oftree_uimage(data, &size, &oftree);
break;
case filetype_oftree:
printf("Loading devicetree from '%s'\n", data->oftree_file);
ret = read_file_2(data->oftree_file, &size, (void *)&oftree,
FILESIZE_MAX);
break;