summaryrefslogtreecommitdiff
path: root/kernel/boot.s
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/boot.s')
-rw-r--r--kernel/boot.s4
1 files changed, 3 insertions, 1 deletions
diff --git a/kernel/boot.s b/kernel/boot.s
index 21b248c..db846c9 100644
--- a/kernel/boot.s
+++ b/kernel/boot.s
@@ -7,6 +7,7 @@ extern hd_init
extern kmain
extern paging_init
extern printk
+extern serial_init
extern syscall_init
extern timer_init
extern traps_init
@@ -39,7 +40,8 @@ kboot:
push .msg
call printk
add esp, 4
- ; initialize the disk interface
+ ; initialize secondary subsystems
+ call serial_init
call hd_init
; last minute setup, then transfer to kmain
call timer_init