1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 06:47:35 +00:00

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. :^)
This commit is contained in:
Andreas Kling 2020-02-18 14:30:39 +01:00
parent bead20c40f
commit a31ca1282e
2 changed files with 4 additions and 4 deletions

View file

@ -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