Put back accidentally removed code

pull/35/head
Andre Richter 5 years ago
parent 56a650397d
commit 16381c4db8
No known key found for this signature in database
GPG Key ID: 2116C1AB102F615E

Binary file not shown.

Binary file not shown.

@ -46,6 +46,13 @@ fn kernel_entry() -> ! {
// Run the BSP's initialization code.
bsp::init();
// UART should be functional now. Wait for user to hit Enter.
loop {
if bsp::console().read_char() == '\n' {
break;
}
}
println!("[0] Booting on: {}", bsp::board_name());
println!("[1] Drivers loaded:");

Loading…
Cancel
Save