Skip to content
Snippets Groups Projects
Commit aa7acdd5 authored by Michal Simek's avatar Michal Simek
Browse files

microblaze: Initialize jumptable and console


This changes were done to get support for netconsole.

Signed-off-by: default avatarMichal Simek <monstr@monstr.eu>
parent a93c1a17
No related branches found
No related tags found
No related merge requests found
...@@ -166,6 +166,12 @@ void board_init (void) ...@@ -166,6 +166,12 @@ void board_init (void)
/* Initialize stdio devices */ /* Initialize stdio devices */
stdio_init (); 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) { if ((s = getenv ("loadaddr")) != NULL) {
load_addr = simple_strtoul (s, NULL, 16); load_addr = simple_strtoul (s, NULL, 16);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment