This proved useful in a debugging session, so make them easily
available with a #define DEBUG for future developers.

Signed-off-by: Ahmad Fatoum <[email protected]>
---
 common/booti.c | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/common/booti.c b/common/booti.c
index dde1605fe1f1..302d7440abd7 100644
--- a/common/booti.c
+++ b/common/booti.c
@@ -1,6 +1,8 @@
 // SPDX-License-Identifier: GPL-2.0-only
 // SPDX-FileCopyrightText: 2018 Sascha Hauer <[email protected]>
 
+#define pr_fmt(fmt) "booti: " fmt
+
 #include <common.h>
 #include <memory.h>
 #include <bootm.h>
@@ -40,6 +42,11 @@ void *booti_load_image(struct image_data *data, phys_addr_t 
*oftree)
        image_size = le64_to_cpup(kernel_header + 16);
 
        kernel = get_kernel_address(data->os_address, text_offset);
+
+       print_hex_dump_bytes("header ", DUMP_PREFIX_OFFSET,
+                            kernel_header, 80);
+       pr_debug("Kernel to be loaded to %lx+%lx\n", kernel, image_size);
+
        if (kernel == UIMAGE_INVALID_ADDRESS)
                return ERR_PTR(-ENOENT);
 
-- 
2.30.2


Reply via email to