From 37a9ce7275ebae5b7a82099150915bdaae7ec9ea Mon Sep 17 00:00:00 2001 From: Ben Gras Date: Thu, 11 Dec 2008 14:26:50 +0000 Subject: [PATCH] I want to see /dev/imgrd so I can unmount it when it's free. --- commands/scripts/MAKEDEV.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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. -- 2.44.0