NetBSD/etc/etc.pc532/MAKEDEV.conf
lukem fcdfdbba5c Rework MAKEDEV:
*	Use "mknod -F netbsd -r" to create nodes, instead of
	"rm ; mknod; chmod; chown".
	This means permissions & ownership of existing nodes will
	not be changed.
	This is up to 30% faster when populating an empty /dev,
	and nearly 2x faster when re-running on an existing /dev.

    *	New options:
    	-f		force change of permission & ownership of existing
			devices
    	-m mknod	override name/path of mknod program
			(which defaults to $TOOL_MKNOD, then "mknod").
	-s		generate mtree(8) specfile instead of creating devices

    *	Remove /usr/etc from $PATH; not needed anymore.

    *	Provide functions to create devices & directories:
	    mkdev name [b|c] major minor [mode{=600} [gid{=0} [uid{=0}]]]
		create device node `name' with the appropriate permissions
	    lndev src target
		create a symlink from src to target
	    makedir dir mode
		create directory with appropriate mode

    *	UIDs and GIDs are hardcoded in at MAKEDEV generation time.
	(Unfortunately there's not a simple way of determining a GID
	a la "id -n user" for determining a UID).

This was tested by generating MAKEDEV for each MACHINE,MACHINE_ARCH
combination and comparing the results of "MAKEDEV all" from the
previous version to the new one.
(This testing actually highlighted mistakes in the previous configuration!)


Simplify distrib/common/Makefile.makedev to use "MAKEDEV -s"
2003-12-21 17:37:26 +00:00

38 lines
746 B
Plaintext

# $NetBSD: MAKEDEV.conf,v 1.4 2003/12/21 17:37:26 lukem Exp $
all_md)
makedev sd0 sd1 sd2 sd3 st0 st1 cd0 cd1
makedev tty0 tty1 tty2 tty3 tty4 tty5 tty6 tty7
makedev ss0 ch0 uk0 uk1 lpt0 lpt1 rtc
makedev se0 se1 se2 se3
makedev scsibus0 scsibus1 scsibus2 scsibus3
;;
floppy)
makedev std sd0 sd1 sd2 tty0 tty1 tty2 tty3
makedev st0 st1 cd0 cd1 md0 opty
;;
se*)
name=se; unit=${i#se}; chr=22
mkdev $name$unit c $chr $unit 640 $g_operator
;;
tty[0-7])
unit=${i#tty}
mkdev tty0$unit c 8 $unit "" "" $u_uucp
mkdev cu0$unit c 8 $(($unit + 128)) "" "" $u_uucp
;;
rtc)
mkdev rtc c 2 3 644
;;
lpt*)
# pc532 has special lpt driver
unit=${i#lpt}
mkdev lpt${unit} c 17 $(($unit + 64)) 220
mkdev lpt${unit}p c 17 $unit 220
;;