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, 2 insertions, 2 deletions
diff --git a/kernel/boot.s b/kernel/boot.s
index d609611..ac7e0e3 100644
--- a/kernel/boot.s
+++ b/kernel/boot.s
@@ -8,10 +8,10 @@ extern hd_init
extern kmain
extern paging_init
extern printk
-extern serial_init
extern syscall_init
extern timer_init
extern traps_init
+extern tty_init
%define NRTASKS 64
@@ -42,7 +42,7 @@ kboot:
call printk
add esp, 4
; initialize secondary subsystems
- call serial_init
+ call tty_init
call hd_init
; last minute setup, then transfer to kmain
call timer_init