diff --git a/userspace/programs/init/main.cpp b/userspace/programs/init/main.cpp index 6f11d424..a1d45563 100644 --- a/userspace/programs/init/main.cpp +++ b/userspace/programs/init/main.cpp @@ -42,6 +42,12 @@ int main(int argc, char** argv) exit(1); } + if (fork() == 0) + { + execl("/bin/AudioServer", "AudioServer", NULL); + exit(1); + } + bool first = true; termios termios;