summaryrefslogtreecommitdiff
path: root/Kernel/build-root-filesystem.sh
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-04-08 14:09:22 +0200
committerAndreas Kling <kling@serenityos.org>2020-04-08 17:19:46 +0200
commitbefe4c6709815849c396d137cf97fac628812e8c (patch)
tree87737f100cc39160b11adc04ccac40f53a860a84 /Kernel/build-root-filesystem.sh
parentc8087a42fc6b57a31ad24cd73ab1c617adfbd0ab (diff)
downloadserenity-befe4c6709815849c396d137cf97fac628812e8c.zip
Kernel: Remove DebugLogDevice
This was a cute idea but ultimately it's just not useful since we already have the dbgputch() and dbgputstr() syscalls.
Diffstat (limited to 'Kernel/build-root-filesystem.sh')
-rwxr-xr-xKernel/build-root-filesystem.sh2
1 files changed, 0 insertions, 2 deletions
diff --git a/Kernel/build-root-filesystem.sh b/Kernel/build-root-filesystem.sh
index 826be080bb..ab354603a5 100755
--- a/Kernel/build-root-filesystem.sh
+++ b/Kernel/build-root-filesystem.sh
@@ -49,13 +49,11 @@ mknod mnt/dev/random c 1 8
mknod mnt/dev/null c 1 3
mknod mnt/dev/zero c 1 5
mknod mnt/dev/full c 1 7
-mknod mnt/dev/debuglog c 1 18
# random, is failing (randomly) on fuse-ext2 on macos :)
chmod 666 mnt/dev/random || true
chmod 666 mnt/dev/null
chmod 666 mnt/dev/zero
chmod 666 mnt/dev/full
-chmod 666 mnt/dev/debuglog
mknod mnt/dev/keyboard c 85 1
chmod 440 mnt/dev/keyboard
chown 0:$phys_gid mnt/dev/keyboard