summaryrefslogtreecommitdiff
path: root/Userland
diff options
context:
space:
mode:
Diffstat (limited to 'Userland')
-rw-r--r--Userland/Services/SystemServer/main.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/Userland/Services/SystemServer/main.cpp b/Userland/Services/SystemServer/main.cpp
index 962394865b..1b020eea60 100644
--- a/Userland/Services/SystemServer/main.cpp
+++ b/Userland/Services/SystemServer/main.cpp
@@ -363,6 +363,11 @@ static void prepare_synthetic_filesystems()
VERIFY_NOT_REACHED();
}
+ rc = symlink("/proc/self/tty", "/dev/tty");
+ if (rc < 0) {
+ VERIFY_NOT_REACHED();
+ }
+
populate_devfs();
rc = mkdir("/dev/pts", 0755);