summaryrefslogtreecommitdiff
path: root/lib/fdtdec.c
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2021-01-13 20:29:48 -0700
committerTom Rini <trini@konsulko.com>2021-01-27 17:03:16 -0500
commite1d23f569bb3d07611cc5e5ee41b32f553cabb9f (patch)
treed42ab81a543d8bf9bdffcbccc7c0005a829a48f8 /lib/fdtdec.c
parent177e7f9ce71fa659c17c2e1b8f97a1425389577f (diff)
downloadu-boot-e1d23f569bb3d07611cc5e5ee41b32f553cabb9f.tar.gz
fdtdec: Update the missing-devicetree message
This includes information about sandbox which is not relevant for most boards. Drop it. Also add the address to help figure out the problem. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'lib/fdtdec.c')
-rw-r--r--lib/fdtdec.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/fdtdec.c b/lib/fdtdec.c
index 0ab7105fef..54f7a1fe47 100644
--- a/lib/fdtdec.c
+++ b/lib/fdtdec.c
@@ -600,7 +600,8 @@ int fdtdec_prepare_fdt(void)
#ifdef CONFIG_SPL_BUILD
puts("Missing DTB\n");
#else
- puts("No valid device tree binary found - please append one to U-Boot binary, use u-boot-dtb.bin or define CONFIG_OF_EMBED. For sandbox, use -d <file.dtb>\n");
+ printf("No valid device tree binary found at %p\n",
+ gd->fdt_blob);
# ifdef DEBUG
if (gd->fdt_blob) {
printf("fdt_blob=%p\n", gd->fdt_blob);