From b80ff0f03554510826e4dd2954fbc21e9ab89fbc Mon Sep 17 00:00:00 2001 From: Lucas Stach Date: Fri, 12 Feb 2016 17:58:22 +0100 Subject: 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 Signed-off-by: Sascha Hauer --- common/bootm.c | 1 + 1 file changed, 1 insertion(+) (limited to 'common/bootm.c') 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; -- cgit v1.2.3