From: Ben Gras Date: Thu, 11 Dec 2008 14:26:50 +0000 (+0000) Subject: I want to see /dev/imgrd so I can unmount it when it's free. X-Git-Tag: v3.1.4~202 X-Git-Url: http://zhaoyanbai.com/repos/dig.html?a=commitdiff_plain;h=37a9ce7275ebae5b7a82099150915bdaae7ec9ea;p=minix.git I want to see /dev/imgrd so I can unmount it when it's free. --- diff --git a/commands/scripts/MAKEDEV.sh b/commands/scripts/MAKEDEV.sh index 2a2677ac7..b433f90fb 100755 --- a/commands/scripts/MAKEDEV.sh +++ b/commands/scripts/MAKEDEV.sh @@ -67,7 +67,7 @@ do esac case $dev in - ram|mem|kmem|null|boot|zero) + ram|mem|kmem|null|boot|zero|imgrd) # Memory devices. # $e mknod ram b 1 0; $e chmod 600 ram @@ -76,7 +76,8 @@ do $e mknod null c 1 3; $e chmod 666 null $e mknod boot b 1 4; $e chmod 600 ram $e mknod zero c 1 5; $e chmod 644 zero - $e chgrp kmem ram mem kmem null boot zero + $e mknod imgrd b 1 6; $e chmod 644 zero + $e chgrp kmem ram mem kmem null boot zero imgrd ;; fd[0-3]) # Floppy disk drive n.