Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-1-5]: src/etc/etc.mmeye Pull up revision 1.5 (requested by tsutsui):



details:   https://anonhg.NetBSD.org/src/rev/aa2319259394
branches:  netbsd-1-5
changeset: 490735:aa2319259394
user:      he <he%NetBSD.org@localhost>
date:      Mon Feb 26 21:23:45 2001 +0000

description:
Pull up revision 1.5 (requested by tsutsui):
  Fix memory disk entries (md?c -> md?d) since RAW_PART == 3 on
  these ports.

diffstat:

 etc/etc.mmeye/MAKEDEV |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (23 lines):

diff -r 80c75b3b0bb3 -r aa2319259394 etc/etc.mmeye/MAKEDEV
--- a/etc/etc.mmeye/MAKEDEV     Mon Feb 26 21:23:18 2001 +0000
+++ b/etc/etc.mmeye/MAKEDEV     Mon Feb 26 21:23:45 2001 +0000
@@ -1,6 +1,6 @@
 #!/bin/sh -
 #
-#      $NetBSD: MAKEDEV,v 1.3.4.2 2000/08/11 20:53:34 mason Exp $
+#      $NetBSD: MAKEDEV,v 1.3.4.3 2001/02/26 21:23:45 he Exp $
 #
 # Copyright (c) 1990 The Regents of the University of California.
 # All rights reserved.
@@ -170,9 +170,9 @@
        unit=${i#md};   chr=24; blk=17;
        rm -f md${unit}? rmd${unit}?
        mknod md${unit}a  b $blk $(($unit * 8 + 0))
-       mknod md${unit}c  b $blk $(($unit * 8 + 2))
+       mknod md${unit}d  b $blk $(($unit * 8 + 3))
 #      mknod rmd${unit}a c $chr $(($unit * 8 + 0))
-#      mknod rmd${unit}c c $chr $(($unit * 8 + 2))
+#      mknod rmd${unit}d c $chr $(($unit * 8 + 3))
        chgrp operator md${unit}? #rmd${unit}?
        chmod 640 md${unit}? #rmd${unit}?
        ;;



Home | Main Index | Thread Index | Old Index