summaryrefslogtreecommitdiff
path: root/Kernel
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-02-18 14:30:39 +0100
committerAndreas Kling <kling@serenityos.org>2020-02-18 14:30:39 +0100
commita31ca1282ebd13da58e5db1da369d95c3e696031 (patch)
tree2d87ea0f97bef8284442b7cb57af04edaac909d2 /Kernel
parentbead20c40f2d06a1a7b0df9b2caf2d963f44d632 (diff)
downloadserenity-a31ca1282ebd13da58e5db1da369d95c3e696031.zip
Base: Rename /dev/psaux to /dev/mouse
Since this device doesn't actually hand out raw PS/2 aux packets, let's just call it "mouse" instead. :^)
Diffstat (limited to 'Kernel')
-rwxr-xr-xKernel/build-root-filesystem.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/Kernel/build-root-filesystem.sh b/Kernel/build-root-filesystem.sh
index aeb3227956..922083703e 100755
--- a/Kernel/build-root-filesystem.sh
+++ b/Kernel/build-root-filesystem.sh
@@ -59,9 +59,9 @@ chmod 666 mnt/dev/debuglog
mknod mnt/dev/keyboard c 85 1
chmod 440 mnt/dev/keyboard
chown 0:$phys_gid mnt/dev/keyboard
-mknod mnt/dev/psaux c 10 1
-chmod 440 mnt/dev/psaux
-chown 0:$phys_gid mnt/dev/psaux
+mknod mnt/dev/mouse c 10 1
+chmod 440 mnt/dev/mouse
+chown 0:$phys_gid mnt/dev/mouse
mknod mnt/dev/audio c 42 42
chmod 220 mnt/dev/audio
chown 0:$audio_gid mnt/dev/audio