projects
/
oweals
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a93c1a1
)
microblaze: Initialize jumptable and console
author
Michal Simek
<monstr@monstr.eu>
Thu, 21 Jul 2011 08:30:42 +0000
(10:30 +0200)
committer
Michal Simek
<monstr@monstr.eu>
Mon, 10 Oct 2011 06:54:21 +0000
(08:54 +0200)
This changes were done to get support for netconsole.
Signed-off-by: Michal Simek <monstr@monstr.eu>
arch/microblaze/lib/board.c
patch
|
blob
|
history
diff --git
a/arch/microblaze/lib/board.c
b/arch/microblaze/lib/board.c
index df27c1c1b9330c4c1472de910ac78608fc6cbeb0..d6773299e1bb7d58d6976ef10f563440104080e7 100644
(file)
--- 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);
}