Module Name:    src
Committed By:   tsutsui
Date:           Sat Apr 27 14:42:21 UTC 2024

Modified Files:
        src/etc/etc.vax: MAKEDEV.conf

Log Message:
Disable dmf* and dmz* entries and add warns "not integrated yet."

Also note tty[EFGH]? have been used by MI wscons and new tty node names
should be assigned once dmf(4) is committed.

Ok'ed by ragge@ on port-vax@.
 https://mail-index.netbsd.org/port-vax/2024/02/13/msg004859.html


To generate a diff of this commit:
cvs rdiff -u -r1.20 -r1.21 src/etc/etc.vax/MAKEDEV.conf

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/etc.vax/MAKEDEV.conf
diff -u src/etc/etc.vax/MAKEDEV.conf:1.20 src/etc/etc.vax/MAKEDEV.conf:1.21
--- src/etc/etc.vax/MAKEDEV.conf:1.20	Thu Feb  1 22:22:05 2024
+++ src/etc/etc.vax/MAKEDEV.conf	Sat Apr 27 14:42:21 2024
@@ -1,4 +1,4 @@
-# $NetBSD: MAKEDEV.conf,v 1.20 2024/02/01 22:22:05 tsutsui Exp $
+# $NetBSD: MAKEDEV.conf,v 1.21 2024/04/27 14:42:21 tsutsui Exp $
 
 all_md)
 	makedev mt0 mt1 ts0 ts1 st0 st1 uk0 ss0 cd0 vt0
@@ -129,29 +129,34 @@ dhu[0-9]*|dh[0-9]*|dmf[0-9]*|dmz[0-9]*|v
 		esac
 		;;
 	dmz*)	name=dmz; major=37; count=24
-		unit=${i#dmz}
-		case $unit in
-		0) ch=a ;;
-		1) ch=b ;;
-		2) ch=c ;;
-		3) ch=e ;;
-		4) ch=f ;;
-		*) warn "bad unit for $name in: $i" ;;
-		esac
+		warn "$i is not integrated yet"
+#		unit=${i#dmz}
+#		case $unit in
+#		0) ch=a ;;
+#		1) ch=b ;;
+#		2) ch=c ;;
+#		3) ch=e ;;
+#		4) ch=f ;;
+#		*) warn "bad unit for $name in: $i" ;;
+#		esac
 		;;
 	dmf*)	name=dmf; major=22; count=8
-		unit=${i#dmf}
-		case $unit in
-		0) ch=A ;;
-		1) ch=B ;;
-		2) ch=C ;;
-		3) ch=E ;;
-		4) ch=F ;;
-		5) ch=G ;;
-		6) ch=H ;;
-		7) ch=I ;;
-		*) warn "bad unit for $name in: $i" ;;
-		esac
+		warn "$i is not integrated yet"
+##		XXX:
+##		 tty[EFGH]? have already been used by MI wscons so
+##		 new tty node names should be assigned once dmf(4) is committed
+#		unit=${i#dmf}
+#		case $unit in
+#		0) ch=A ;;
+#		1) ch=B ;;
+#		2) ch=C ;;
+#		3) ch=E ;;
+#		4) ch=F ;;
+#		5) ch=G ;;
+#		6) ch=H ;;
+#		7) ch=I ;;
+#		*) warn "bad unit for $name in: $i" ;;
+#		esac
 		;;
 	dhu*)	name=dhu; major=34; count=16
 		unit=${i#dhu}

Reply via email to