Subject: MAKEDEV update
To: None <port-atari@NetBSD.ORG>
From: Leo Weppelman <leo@ahwau.ahold.nl>
List: port-atari
Date: 06/15/1995 23:00:17
Hi all,
Thanks to both Adventurer and Waldi, another 2 bugs have been discovered
in NetBSD/Atari ;-) Luckily, they can easily be fixed.
About the bugs:
- Obviously, the devices mdm02/ser02 have the wrong ownership, it should
be uucp instead of root. This assumes you normally don't work as root ;-)
- The devices std[in|out|err] have the wrong major number (less obvious)
Please apply the following patch to /dev/MAKEDEV:
Index: MAKEDEV
===================================================================
RCS file: /a/cvsroot/src/etc/etc.atari/MAKEDEV,v
retrieving revision 1.2
diff -r1.2 MAKEDEV
108,110c108,110
< mknod stdin c 21 0 ; chmod 666 stdin
< mknod stdout c 21 1 ; chmod 666 stdout
< mknod stderr c 21 2 ; chmod 666 stderr
---
> mknod stdin c 18 0 ; chmod 666 stdin
> mknod stdout c 18 1 ; chmod 666 stdout
> mknod stderr c 18 2 ; chmod 666 stderr
127a128
> chown uucp:wheel ser02
132a134
> chown uucp:wheel mdm02
Bye, Leo.