From b781495e745cfc45b0c75ce8f3e4fc0788da0a0e Mon Sep 17 00:00:00 2001 From: Liav A Date: Sat, 19 Dec 2020 15:52:50 +0200 Subject: [PATCH] Build: Create device files according to the new major-minor numbers --- Meta/build-root-filesystem.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Meta/build-root-filesystem.sh b/Meta/build-root-filesystem.sh index de0784d203..5433d24482 100755 --- a/Meta/build-root-filesystem.sh +++ b/Meta/build-root-filesystem.sh @@ -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