From 7530c82c3d295c2e93f440dc2ee6440a72e41c3a Mon Sep 17 00:00:00 2001 From: Antony Pavlov Date: Mon, 18 Jul 2011 17:06:10 +0400 Subject: startup.c: make DEBUG_LL output more useful Signed-off-by: Antony Pavlov Signed-off-by: Sascha Hauer --- common/startup.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'common/startup.c') diff --git a/common/startup.c b/common/startup.c index 00bc9a0038..2e28cb2264 100644 --- a/common/startup.c +++ b/common/startup.c @@ -134,13 +134,17 @@ void start_barebox (void) for (initcall = __barebox_initcalls_start; initcall < __barebox_initcalls_end; initcall++) { + PUTS_LL("<<"); PUTHEX_LL(*initcall); - PUTC_LL('\n'); result = (*initcall)(); + PUTC_LL('>'); if (result) hang(); + PUTS_LL(">\n"); } + PUTS_LL("initcalls done\n"); + display_meminfo(); #ifdef CONFIG_ENV_HANDLING -- cgit v1.2.3