summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLucas Stach <l.stach@pengutronix.de>2016-02-12 17:58:22 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2016-02-15 07:32:35 +0100
commitb80ff0f03554510826e4dd2954fbc21e9ab89fbc (patch)
tree5196fc44d994ab46cde149c716e864aa1bd84233
parent0f1c0c4d3070b5d67395b7ab60f7d9f1791399e6 (diff)
downloadbarebox-b80ff0f03554510826e4dd2954fbc21e9ab89fbc.tar.gz
barebox-b80ff0f03554510826e4dd2954fbc21e9ab89fbc.tar.xz
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>
-rw-r--r--common/bootm.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/common/bootm.c b/common/bootm.c
index 2306783a8b..c046c7e5a7 100644
--- a/common/bootm.c
+++ b/common/bootm.c
@@ -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;