summaryrefslogtreecommitdiff
path: root/src/kernel.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel.c')
-rw-r--r--src/kernel.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/kernel.c b/src/kernel.c
index c84d28c..9a33644 100644
--- a/src/kernel.c
+++ b/src/kernel.c
@@ -40,7 +40,7 @@ void entry( void )
console_add_vga_output( &console, &vga );
// TODO: breaks on real hardware, we need proper interrupt handling
// and driver implementation as for the mouse and the keyboard
-// console_add_serial_output( &console, &serial );
+ console_add_serial_output( &console, &serial );
// initialize the early console of the kernel
stdio_set_console( &console );
@@ -77,6 +77,7 @@ void entry( void )
puts( "Detecting devices via PCI.." );
pci_controller_t pci_controller;
pci_controller_init( &pci_controller );
+ pci_controller_scan( &pci_controller );
puts( "Running.." );