Build: Create device files according to the new major-minor numbers

This commit is contained in:
Liav A 2020-12-19 15:52:50 +02:00 committed by Andreas Kling
parent 469f20d4ee
commit b781495e74
Notes: sideshowbarker 2024-07-19 00:42:02 +09:00

View file

@ -123,8 +123,8 @@ mknod mnt/dev/ptmx c 5 2
chmod 666 mnt/dev/ptmx
mknod mnt/dev/hda b 3 0
mknod mnt/dev/hdb b 3 1
mknod mnt/dev/hdc b 4 0
mknod mnt/dev/hdd b 4 1
mknod mnt/dev/hdc b 3 2
mknod mnt/dev/hdd b 3 3
for hd in a b c d; do
chmod 600 mnt/dev/hd$hd
done