Module Name: src
Committed By: msaitoh
Date: Mon Jul 29 08:29:35 UTC 2013
Modified Files:
src/etc [netbsd-6]: MAKEDEV.tmpl
Log Message:
Pull up following revision(s) (requested by martin in ticket #919):
etc/MAKEDEV.tmpl: revision 1.166
Add a makedisk_p12high, used by VAX now after unbumping MAXPARTITIONS from
16 down to 12. This fixes install issues on new setups.
To generate a diff of this commit:
cvs rdiff -u -r1.151.2.9 -r1.151.2.10 src/etc/MAKEDEV.tmpl
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/etc/MAKEDEV.tmpl
diff -u src/etc/MAKEDEV.tmpl:1.151.2.9 src/etc/MAKEDEV.tmpl:1.151.2.10
--- src/etc/MAKEDEV.tmpl:1.151.2.9 Wed Feb 13 01:36:06 2013
+++ src/etc/MAKEDEV.tmpl Mon Jul 29 08:29:35 2013
@@ -1,5 +1,5 @@
#!/bin/sh -
-# $NetBSD: MAKEDEV.tmpl,v 1.151.2.9 2013/02/13 01:36:06 riz Exp $
+# $NetBSD: MAKEDEV.tmpl,v 1.151.2.10 2013/07/29 08:29:35 msaitoh Exp $
#
# Copyright (c) 2003,2007,2008 The NetBSD Foundation, Inc.
# All rights reserved.
@@ -2160,6 +2160,37 @@ makedisk_p8()
mkdev r${name}${unit}h c $chr $(($unit * 8 + 7)) 640 $g_operator
}
+makedisk_p12high()
+{
+ ho=524280 # offset for partition 9 to 11 (same as ...p16high)
+ name="$1"; unit="$2"; blk="$3"; chr="$4"
+
+ mkdev ${name}${unit}a b $blk $(($unit * 8 + 0)) 640 $g_operator
+ mkdev ${name}${unit}b b $blk $(($unit * 8 + 1)) 640 $g_operator
+ mkdev ${name}${unit}c b $blk $(($unit * 8 + 2)) 640 $g_operator
+ mkdev ${name}${unit}d b $blk $(($unit * 8 + 3)) 640 $g_operator
+ mkdev ${name}${unit}e b $blk $(($unit * 8 + 4)) 640 $g_operator
+ mkdev ${name}${unit}f b $blk $(($unit * 8 + 5)) 640 $g_operator
+ mkdev ${name}${unit}g b $blk $(($unit * 8 + 6)) 640 $g_operator
+ mkdev ${name}${unit}h b $blk $(($unit * 8 + 7)) 640 $g_operator
+ mkdev ${name}${unit}i b $blk $(($unit * 8 + $ho + 8)) 640 $g_operator
+ mkdev ${name}${unit}j b $blk $(($unit * 8 + $ho + 9)) 640 $g_operator
+ mkdev ${name}${unit}k b $blk $(($unit * 8 + $ho + 10)) 640 $g_operator
+ mkdev ${name}${unit}l b $blk $(($unit * 8 + $ho + 11)) 640 $g_operator
+ mkdev r${name}${unit}a c $chr $(($unit * 8 + 0)) 640 $g_operator
+ mkdev r${name}${unit}b c $chr $(($unit * 8 + 1)) 640 $g_operator
+ mkdev r${name}${unit}c c $chr $(($unit * 8 + 2)) 640 $g_operator
+ mkdev r${name}${unit}d c $chr $(($unit * 8 + 3)) 640 $g_operator
+ mkdev r${name}${unit}e c $chr $(($unit * 8 + 4)) 640 $g_operator
+ mkdev r${name}${unit}f c $chr $(($unit * 8 + 5)) 640 $g_operator
+ mkdev r${name}${unit}g c $chr $(($unit * 8 + 6)) 640 $g_operator
+ mkdev r${name}${unit}h c $chr $(($unit * 8 + 7)) 640 $g_operator
+ mkdev r${name}${unit}i c $chr $(($unit * 8 + $ho + 8)) 640 $g_operator
+ mkdev r${name}${unit}j c $chr $(($unit * 8 + $ho + 9)) 640 $g_operator
+ mkdev r${name}${unit}k c $chr $(($unit * 8 + $ho + 10)) 640 $g_operator
+ mkdev r${name}${unit}l c $chr $(($unit * 8 + $ho + 11)) 640 $g_operator
+}
+
makedisk_p16()
{
name="$1"; unit="$2"; blk="$3"; chr="$4"