1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-16 07:44:57 +00:00

Kernel: Disable VGA console in graphical mode

This commit is contained in:
Conrad Pankoff 2019-08-18 12:04:09 +10:00 committed by Andreas Kling
parent 36e3e7b75a
commit 879bc28e14
3 changed files with 28 additions and 3 deletions

View file

@ -138,6 +138,11 @@ VFS* vfs;
int error;
// SystemServer will start WindowServer, which will be doing graphics.
// From this point on we don't want to touch the VGA text terminal or
// accept keyboard input.
tty0->set_graphical(true);
auto* system_server_process = Process::create_user_process("/bin/SystemServer", (uid_t)0, (gid_t)0, (pid_t)0, error, {}, {}, tty0);
if (error != 0) {
kprintf("init_stage2: error spawning SystemServer: %d\n", error);