1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 10:38:11 +00:00

Switch into 1024x768x32bpp VESA LFB mode at boot.

This is going to be pretty cool once I can hook up the Widgets/ code to it.
This commit is contained in:
Andreas Kling 2019-01-09 02:29:11 +01:00
parent 9963da9005
commit 659c54e32b
9 changed files with 172 additions and 2 deletions

View file

@ -102,6 +102,9 @@ static void init_stage2()
Process::create_kernel_process("spawn_stress", spawn_stress);
#endif
extern void WindowComposer_main();
Process::create_kernel_process("WindowComposer", WindowComposer_main);
current->sys$exit(0);
ASSERT_NOT_REACHED();
}