CONFIG_INITCALL_DEBUG can be very useful to debug early barebox hangs, but it doesn't help when the hang happens just before. In this case, enable the early barebox proper debug messages. Signed-off-by: Ahmad Fatoum <a.fatoum@xxxxxxxxxxxxxx> --- v1 -> v2: - new patch --- arch/riscv/boot/start.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/arch/riscv/boot/start.c b/arch/riscv/boot/start.c index 27d9066243f9..92991d0f6a84 100644 --- a/arch/riscv/boot/start.c +++ b/arch/riscv/boot/start.c @@ -3,6 +3,10 @@ #define pr_fmt(fmt) "start.c: " fmt +#ifdef CONFIG_DEBUG_INITCALLS +#define DEBUG +#endif + #include <common.h> #include <init.h> #include <linux/sizes.h> -- 2.30.2