From: Simon Glass Date: Thu, 14 Jan 2021 03:29:48 +0000 (-0700) Subject: fdtdec: Update the missing-devicetree message X-Git-Tag: v2021.10~343^2~12 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e1d23f569bb3d07611cc5e5ee41b32f553cabb9f;p=platform%2Fkernel%2Fu-boot.git 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 --- diff --git a/lib/fdtdec.c b/lib/fdtdec.c index 0ab7105..54f7a1f 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 \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);