git://scm.lunaixsky.com
/
lunaix-os.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
feat: better rtc framework which aims to remove single rtc restrictions.
[lunaix-os.git]
/
lunaix-os
/
kernel
/
kinit.c
diff --git
a/lunaix-os/kernel/kinit.c
b/lunaix-os/kernel/kinit.c
index 6b6e5e48193d99d5abc2f772b15fdd519e74081e..046054472f7b97d74005ca846c0efa5c41e30085 100644
(file)
--- a/
lunaix-os/kernel/kinit.c
+++ b/
lunaix-os/kernel/kinit.c
@@
-64,7
+64,6
@@
kernel_bootstrap(struct boot_handoff* bhctx)
/* Let's get fs online as soon as possible, as things rely on them */
vfs_init();
fsm_init();
/* Let's get fs online as soon as possible, as things rely on them */
vfs_init();
fsm_init();
- input_init();
/* Get intc online, this is the cornerstone when initing devices */
intc_init();
/* Get intc online, this is the cornerstone when initing devices */
intc_init();
@@
-73,6
+72,7
@@
kernel_bootstrap(struct boot_handoff* bhctx)
clock_init();
timer_init();
clock_init();
timer_init();
+ input_init();
block_init();
/* the bare metal are now happy, let's get software over with */
block_init();
/* the bare metal are now happy, let's get software over with */
@@
-89,7
+89,7
@@
kernel_bootstrap(struct boot_handoff* bhctx)
vfs_mount("/task", "taskfs", NULL, MNT_RO);
lxconsole_spawn_ttydev();
vfs_mount("/task", "taskfs", NULL, MNT_RO);
lxconsole_spawn_ttydev();
- device_in
it_builtin
();
+ device_in
stall_pseudo
();
/* Finish up bootstrapping sequence, we are ready to spawn the root process
* and start geting into uspace
/* Finish up bootstrapping sequence, we are ready to spawn the root process
* and start geting into uspace