From: Michal Simek Date: Thu, 21 Jul 2011 08:30:42 +0000 (+0200) Subject: microblaze: Initialize jumptable and console X-Git-Tag: v2011.12-rc1~539^2~2 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=aa7acdd5094b0463301af1cf00186ff5ff2a8082;p=u-boot microblaze: Initialize jumptable and console This changes were done to get support for netconsole. Signed-off-by: Michal Simek --- diff --git a/arch/microblaze/lib/board.c b/arch/microblaze/lib/board.c index df27c1c1b9..d6773299e1 100644 --- a/arch/microblaze/lib/board.c +++ b/arch/microblaze/lib/board.c @@ -166,6 +166,12 @@ void board_init (void) /* Initialize stdio devices */ stdio_init (); + /* Initialize the jump table for applications */ + jumptable_init(); + + /* Initialize the console (after the relocation and devices init) */ + console_init_r(); + if ((s = getenv ("loadaddr")) != NULL) { load_addr = simple_strtoul (s, NULL, 16); }