1
0
mirror of https://github.com/openbsd/src.git synced 2026-04-30 17:16:30 +00:00
This commit is contained in:
deraadt
2025-11-19 17:49:59 +00:00
parent 1ad762df97
commit 54f5a96e9c
14 changed files with 42 additions and 42 deletions

View File

@@ -5,7 +5,7 @@
#
# OpenBSD: etc.alpha/MAKEDEV.md,v 1.79 2025/09/29 01:00:14 deraadt Exp
# OpenBSD: MAKEDEV.common,v 1.124 2025/10/15 17:53:36 deraadt Exp
# OpenBSD: MAKEDEV.mi,v 1.90 2025/11/17 14:22:24 deraadt Exp
# OpenBSD: MAKEDEV.mi,v 1.91 2025/11/19 17:49:42 deraadt Exp
# OpenBSD: MAKEDEV.sub,v 1.14 2005/02/07 06:14:18 david Exp
#
#
@@ -94,7 +94,7 @@
# kstat Kernel Statistics
PATH=/sbin:/usr/sbin:/bin:/usr/bin
UNITMULT=64
PARTITIONS=`sysctl -n kern.maxpartitions`
MAKEDEV_PARTITIONS=${MAKEDEV_PARTITIONS:-`sysctl -n kern.maxpartitions`}
T=$0
# set this to echo for Echo-Only debugging
@@ -172,7 +172,7 @@ dodisk()
[ "$DEBUG" ] && set -x
n=$(($((${5}*${7:-$UNITMULT}))+${6})) count=0
_extra=
[ $PARTITIONS == 52 ] && _extra="q r s t u v w x y z \
[ $MAKEDEV_PARTITIONS == 52 ] && _extra="q r s t u v w x y z \
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z"
for d in a b c d e f g h i j k l m n o p $_extra
do

View File

@@ -5,7 +5,7 @@
#
# OpenBSD: etc.amd64/MAKEDEV.md,v 1.86 2025/11/12 11:34:36 hshoexer Exp
# OpenBSD: MAKEDEV.common,v 1.124 2025/10/15 17:53:36 deraadt Exp
# OpenBSD: MAKEDEV.mi,v 1.90 2025/11/17 14:22:24 deraadt Exp
# OpenBSD: MAKEDEV.mi,v 1.91 2025/11/19 17:49:42 deraadt Exp
# OpenBSD: MAKEDEV.sub,v 1.14 2005/02/07 06:14:18 david Exp
#
#
@@ -105,7 +105,7 @@
# psp Platform Security Processor
PATH=/sbin:/usr/sbin:/bin:/usr/bin
UNITMULT=64
PARTITIONS=`sysctl -n kern.maxpartitions`
MAKEDEV_PARTITIONS=${MAKEDEV_PARTITIONS:-`sysctl -n kern.maxpartitions`}
T=$0
# set this to echo for Echo-Only debugging
@@ -183,7 +183,7 @@ dodisk()
[ "$DEBUG" ] && set -x
n=$(($((${5}*${7:-$UNITMULT}))+${6})) count=0
_extra=
[ $PARTITIONS == 52 ] && _extra="q r s t u v w x y z \
[ $MAKEDEV_PARTITIONS == 52 ] && _extra="q r s t u v w x y z \
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z"
for d in a b c d e f g h i j k l m n o p $_extra
do

View File

@@ -5,7 +5,7 @@
#
# OpenBSD: etc.arm64/MAKEDEV.md,v 1.18 2025/09/29 01:00:14 deraadt Exp
# OpenBSD: MAKEDEV.common,v 1.124 2025/10/15 17:53:36 deraadt Exp
# OpenBSD: MAKEDEV.mi,v 1.90 2025/11/17 14:22:24 deraadt Exp
# OpenBSD: MAKEDEV.mi,v 1.91 2025/11/19 17:49:42 deraadt Exp
# OpenBSD: MAKEDEV.sub,v 1.14 2005/02/07 06:14:18 david Exp
#
#
@@ -92,7 +92,7 @@
# kstat Kernel Statistics
PATH=/sbin:/usr/sbin:/bin:/usr/bin
UNITMULT=64
PARTITIONS=`sysctl -n kern.maxpartitions`
MAKEDEV_PARTITIONS=${MAKEDEV_PARTITIONS:-`sysctl -n kern.maxpartitions`}
T=$0
# set this to echo for Echo-Only debugging
@@ -170,7 +170,7 @@ dodisk()
[ "$DEBUG" ] && set -x
n=$(($((${5}*${7:-$UNITMULT}))+${6})) count=0
_extra=
[ $PARTITIONS == 52 ] && _extra="q r s t u v w x y z \
[ $MAKEDEV_PARTITIONS == 52 ] && _extra="q r s t u v w x y z \
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z"
for d in a b c d e f g h i j k l m n o p $_extra
do

View File

@@ -5,7 +5,7 @@
#
# OpenBSD: etc.armv7/MAKEDEV.md,v 1.23 2025/09/29 01:00:14 deraadt Exp
# OpenBSD: MAKEDEV.common,v 1.124 2025/10/15 17:53:36 deraadt Exp
# OpenBSD: MAKEDEV.mi,v 1.90 2025/11/17 14:22:24 deraadt Exp
# OpenBSD: MAKEDEV.mi,v 1.91 2025/11/19 17:49:42 deraadt Exp
# OpenBSD: MAKEDEV.sub,v 1.14 2005/02/07 06:14:18 david Exp
#
#
@@ -88,7 +88,7 @@
# kstat Kernel Statistics
PATH=/sbin:/usr/sbin:/bin:/usr/bin
UNITMULT=64
PARTITIONS=`sysctl -n kern.maxpartitions`
MAKEDEV_PARTITIONS=${MAKEDEV_PARTITIONS:-`sysctl -n kern.maxpartitions`}
T=$0
# set this to echo for Echo-Only debugging
@@ -166,7 +166,7 @@ dodisk()
[ "$DEBUG" ] && set -x
n=$(($((${5}*${7:-$UNITMULT}))+${6})) count=0
_extra=
[ $PARTITIONS == 52 ] && _extra="q r s t u v w x y z \
[ $MAKEDEV_PARTITIONS == 52 ] && _extra="q r s t u v w x y z \
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z"
for d in a b c d e f g h i j k l m n o p $_extra
do

View File

@@ -5,7 +5,7 @@
#
# OpenBSD: etc.hppa/MAKEDEV.md,v 1.71 2025/09/29 01:00:14 deraadt Exp
# OpenBSD: MAKEDEV.common,v 1.124 2025/10/15 17:53:36 deraadt Exp
# OpenBSD: MAKEDEV.mi,v 1.90 2025/11/17 14:22:24 deraadt Exp
# OpenBSD: MAKEDEV.mi,v 1.91 2025/11/19 17:49:42 deraadt Exp
# OpenBSD: MAKEDEV.sub,v 1.14 2005/02/07 06:14:18 david Exp
#
#
@@ -87,7 +87,7 @@
# kstat Kernel Statistics
PATH=/sbin:/usr/sbin:/bin:/usr/bin
UNITMULT=64
PARTITIONS=`sysctl -n kern.maxpartitions`
MAKEDEV_PARTITIONS=${MAKEDEV_PARTITIONS:-`sysctl -n kern.maxpartitions`}
T=$0
# set this to echo for Echo-Only debugging
@@ -165,7 +165,7 @@ dodisk()
[ "$DEBUG" ] && set -x
n=$(($((${5}*${7:-$UNITMULT}))+${6})) count=0
_extra=
[ $PARTITIONS == 52 ] && _extra="q r s t u v w x y z \
[ $MAKEDEV_PARTITIONS == 52 ] && _extra="q r s t u v w x y z \
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z"
for d in a b c d e f g h i j k l m n o p $_extra
do

View File

@@ -5,7 +5,7 @@
#
# OpenBSD: etc.i386/MAKEDEV.md,v 1.97 2025/09/29 01:00:14 deraadt Exp
# OpenBSD: MAKEDEV.common,v 1.124 2025/10/15 17:53:36 deraadt Exp
# OpenBSD: MAKEDEV.mi,v 1.90 2025/11/17 14:22:24 deraadt Exp
# OpenBSD: MAKEDEV.mi,v 1.91 2025/11/19 17:49:42 deraadt Exp
# OpenBSD: MAKEDEV.sub,v 1.14 2005/02/07 06:14:18 david Exp
#
#
@@ -103,7 +103,7 @@
# kstat Kernel Statistics
PATH=/sbin:/usr/sbin:/bin:/usr/bin
UNITMULT=64
PARTITIONS=`sysctl -n kern.maxpartitions`
MAKEDEV_PARTITIONS=${MAKEDEV_PARTITIONS:-`sysctl -n kern.maxpartitions`}
T=$0
# set this to echo for Echo-Only debugging
@@ -181,7 +181,7 @@ dodisk()
[ "$DEBUG" ] && set -x
n=$(($((${5}*${7:-$UNITMULT}))+${6})) count=0
_extra=
[ $PARTITIONS == 52 ] && _extra="q r s t u v w x y z \
[ $MAKEDEV_PARTITIONS == 52 ] && _extra="q r s t u v w x y z \
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z"
for d in a b c d e f g h i j k l m n o p $_extra
do

View File

@@ -5,7 +5,7 @@
#
# OpenBSD: etc.landisk/MAKEDEV.md,v 1.53 2025/09/29 01:00:14 deraadt Exp
# OpenBSD: MAKEDEV.common,v 1.124 2025/10/15 17:53:36 deraadt Exp
# OpenBSD: MAKEDEV.mi,v 1.90 2025/11/17 14:22:24 deraadt Exp
# OpenBSD: MAKEDEV.mi,v 1.91 2025/11/19 17:49:42 deraadt Exp
# OpenBSD: MAKEDEV.sub,v 1.14 2005/02/07 06:14:18 david Exp
#
#
@@ -84,7 +84,7 @@
# kstat Kernel Statistics
PATH=/sbin:/usr/sbin:/bin:/usr/bin
UNITMULT=64
PARTITIONS=`sysctl -n kern.maxpartitions`
MAKEDEV_PARTITIONS=${MAKEDEV_PARTITIONS:-`sysctl -n kern.maxpartitions`}
T=$0
# set this to echo for Echo-Only debugging
@@ -162,7 +162,7 @@ dodisk()
[ "$DEBUG" ] && set -x
n=$(($((${5}*${7:-$UNITMULT}))+${6})) count=0
_extra=
[ $PARTITIONS == 52 ] && _extra="q r s t u v w x y z \
[ $MAKEDEV_PARTITIONS == 52 ] && _extra="q r s t u v w x y z \
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z"
for d in a b c d e f g h i j k l m n o p $_extra
do

View File

@@ -5,7 +5,7 @@
#
# OpenBSD: etc.loongson/MAKEDEV.md,v 1.39 2025/09/29 01:00:14 deraadt Exp
# OpenBSD: MAKEDEV.common,v 1.124 2025/10/15 17:53:36 deraadt Exp
# OpenBSD: MAKEDEV.mi,v 1.90 2025/11/17 14:22:24 deraadt Exp
# OpenBSD: MAKEDEV.mi,v 1.91 2025/11/19 17:49:42 deraadt Exp
# OpenBSD: MAKEDEV.sub,v 1.14 2005/02/07 06:14:18 david Exp
#
#
@@ -85,7 +85,7 @@
# kstat Kernel Statistics
PATH=/sbin:/usr/sbin:/bin:/usr/bin
UNITMULT=64
PARTITIONS=`sysctl -n kern.maxpartitions`
MAKEDEV_PARTITIONS=${MAKEDEV_PARTITIONS:-`sysctl -n kern.maxpartitions`}
T=$0
# set this to echo for Echo-Only debugging
@@ -163,7 +163,7 @@ dodisk()
[ "$DEBUG" ] && set -x
n=$(($((${5}*${7:-$UNITMULT}))+${6})) count=0
_extra=
[ $PARTITIONS == 52 ] && _extra="q r s t u v w x y z \
[ $MAKEDEV_PARTITIONS == 52 ] && _extra="q r s t u v w x y z \
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z"
for d in a b c d e f g h i j k l m n o p $_extra
do

View File

@@ -5,7 +5,7 @@
#
# OpenBSD: etc.luna88k/MAKEDEV.md,v 1.38 2025/09/29 01:00:14 deraadt Exp
# OpenBSD: MAKEDEV.common,v 1.124 2025/10/15 17:53:36 deraadt Exp
# OpenBSD: MAKEDEV.mi,v 1.90 2025/11/17 14:22:24 deraadt Exp
# OpenBSD: MAKEDEV.mi,v 1.91 2025/11/19 17:49:42 deraadt Exp
# OpenBSD: MAKEDEV.sub,v 1.14 2005/02/07 06:14:18 david Exp
#
#
@@ -75,7 +75,7 @@
# kstat Kernel Statistics
PATH=/sbin:/usr/sbin:/bin:/usr/bin
UNITMULT=64
PARTITIONS=`sysctl -n kern.maxpartitions`
MAKEDEV_PARTITIONS=${MAKEDEV_PARTITIONS:-`sysctl -n kern.maxpartitions`}
T=$0
# set this to echo for Echo-Only debugging
@@ -153,7 +153,7 @@ dodisk()
[ "$DEBUG" ] && set -x
n=$(($((${5}*${7:-$UNITMULT}))+${6})) count=0
_extra=
[ $PARTITIONS == 52 ] && _extra="q r s t u v w x y z \
[ $MAKEDEV_PARTITIONS == 52 ] && _extra="q r s t u v w x y z \
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z"
for d in a b c d e f g h i j k l m n o p $_extra
do

View File

@@ -5,7 +5,7 @@
#
# OpenBSD: etc.macppc/MAKEDEV.md,v 1.82 2025/09/29 01:00:14 deraadt Exp
# OpenBSD: MAKEDEV.common,v 1.124 2025/10/15 17:53:36 deraadt Exp
# OpenBSD: MAKEDEV.mi,v 1.90 2025/11/17 14:22:24 deraadt Exp
# OpenBSD: MAKEDEV.mi,v 1.91 2025/11/19 17:49:42 deraadt Exp
# OpenBSD: MAKEDEV.sub,v 1.14 2005/02/07 06:14:18 david Exp
#
#
@@ -92,7 +92,7 @@
# kstat Kernel Statistics
PATH=/sbin:/usr/sbin:/bin:/usr/bin
UNITMULT=64
PARTITIONS=`sysctl -n kern.maxpartitions`
MAKEDEV_PARTITIONS=${MAKEDEV_PARTITIONS:-`sysctl -n kern.maxpartitions`}
T=$0
# set this to echo for Echo-Only debugging
@@ -170,7 +170,7 @@ dodisk()
[ "$DEBUG" ] && set -x
n=$(($((${5}*${7:-$UNITMULT}))+${6})) count=0
_extra=
[ $PARTITIONS == 52 ] && _extra="q r s t u v w x y z \
[ $MAKEDEV_PARTITIONS == 52 ] && _extra="q r s t u v w x y z \
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z"
for d in a b c d e f g h i j k l m n o p $_extra
do

View File

@@ -5,7 +5,7 @@
#
# OpenBSD: etc.octeon/MAKEDEV.md,v 1.23 2025/09/29 01:00:14 deraadt Exp
# OpenBSD: MAKEDEV.common,v 1.124 2025/10/15 17:53:36 deraadt Exp
# OpenBSD: MAKEDEV.mi,v 1.90 2025/11/17 14:22:24 deraadt Exp
# OpenBSD: MAKEDEV.mi,v 1.91 2025/11/19 17:49:42 deraadt Exp
# OpenBSD: MAKEDEV.sub,v 1.14 2005/02/07 06:14:18 david Exp
#
#
@@ -82,7 +82,7 @@
# kstat Kernel Statistics
PATH=/sbin:/usr/sbin:/bin:/usr/bin
UNITMULT=64
PARTITIONS=`sysctl -n kern.maxpartitions`
MAKEDEV_PARTITIONS=${MAKEDEV_PARTITIONS:-`sysctl -n kern.maxpartitions`}
T=$0
# set this to echo for Echo-Only debugging
@@ -160,7 +160,7 @@ dodisk()
[ "$DEBUG" ] && set -x
n=$(($((${5}*${7:-$UNITMULT}))+${6})) count=0
_extra=
[ $PARTITIONS == 52 ] && _extra="q r s t u v w x y z \
[ $MAKEDEV_PARTITIONS == 52 ] && _extra="q r s t u v w x y z \
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z"
for d in a b c d e f g h i j k l m n o p $_extra
do

View File

@@ -5,7 +5,7 @@
#
# OpenBSD: etc.powerpc64/MAKEDEV.md,v 1.12 2025/09/29 01:00:14 deraadt Exp
# OpenBSD: MAKEDEV.common,v 1.124 2025/10/15 17:53:36 deraadt Exp
# OpenBSD: MAKEDEV.mi,v 1.90 2025/11/17 14:22:24 deraadt Exp
# OpenBSD: MAKEDEV.mi,v 1.91 2025/11/19 17:49:42 deraadt Exp
# OpenBSD: MAKEDEV.sub,v 1.14 2005/02/07 06:14:18 david Exp
#
#
@@ -88,7 +88,7 @@
# kstat Kernel Statistics
PATH=/sbin:/usr/sbin:/bin:/usr/bin
UNITMULT=64
PARTITIONS=`sysctl -n kern.maxpartitions`
MAKEDEV_PARTITIONS=${MAKEDEV_PARTITIONS:-`sysctl -n kern.maxpartitions`}
T=$0
# set this to echo for Echo-Only debugging
@@ -166,7 +166,7 @@ dodisk()
[ "$DEBUG" ] && set -x
n=$(($((${5}*${7:-$UNITMULT}))+${6})) count=0
_extra=
[ $PARTITIONS == 52 ] && _extra="q r s t u v w x y z \
[ $MAKEDEV_PARTITIONS == 52 ] && _extra="q r s t u v w x y z \
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z"
for d in a b c d e f g h i j k l m n o p $_extra
do

View File

@@ -5,7 +5,7 @@
#
# OpenBSD: etc.riscv64/MAKEDEV.md,v 1.6 2025/09/29 01:00:14 deraadt Exp
# OpenBSD: MAKEDEV.common,v 1.124 2025/10/15 17:53:36 deraadt Exp
# OpenBSD: MAKEDEV.mi,v 1.90 2025/11/17 14:22:24 deraadt Exp
# OpenBSD: MAKEDEV.mi,v 1.91 2025/11/19 17:49:42 deraadt Exp
# OpenBSD: MAKEDEV.sub,v 1.14 2005/02/07 06:14:18 david Exp
#
#
@@ -90,7 +90,7 @@
# kstat Kernel Statistics
PATH=/sbin:/usr/sbin:/bin:/usr/bin
UNITMULT=64
PARTITIONS=`sysctl -n kern.maxpartitions`
MAKEDEV_PARTITIONS=${MAKEDEV_PARTITIONS:-`sysctl -n kern.maxpartitions`}
T=$0
# set this to echo for Echo-Only debugging
@@ -168,7 +168,7 @@ dodisk()
[ "$DEBUG" ] && set -x
n=$(($((${5}*${7:-$UNITMULT}))+${6})) count=0
_extra=
[ $PARTITIONS == 52 ] && _extra="q r s t u v w x y z \
[ $MAKEDEV_PARTITIONS == 52 ] && _extra="q r s t u v w x y z \
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z"
for d in a b c d e f g h i j k l m n o p $_extra
do

View File

@@ -5,7 +5,7 @@
#
# OpenBSD: etc.sparc64/MAKEDEV.md,v 1.102 2025/09/29 01:00:14 deraadt Exp
# OpenBSD: MAKEDEV.common,v 1.124 2025/10/15 17:53:36 deraadt Exp
# OpenBSD: MAKEDEV.mi,v 1.90 2025/11/17 14:22:24 deraadt Exp
# OpenBSD: MAKEDEV.mi,v 1.91 2025/11/19 17:49:42 deraadt Exp
# OpenBSD: MAKEDEV.sub,v 1.14 2005/02/07 06:14:18 david Exp
#
#
@@ -105,7 +105,7 @@
# kstat Kernel Statistics
PATH=/sbin:/usr/sbin:/bin:/usr/bin
UNITMULT=64
PARTITIONS=`sysctl -n kern.maxpartitions`
MAKEDEV_PARTITIONS=${MAKEDEV_PARTITIONS:-`sysctl -n kern.maxpartitions`}
T=$0
# set this to echo for Echo-Only debugging
@@ -183,7 +183,7 @@ dodisk()
[ "$DEBUG" ] && set -x
n=$(($((${5}*${7:-$UNITMULT}))+${6})) count=0
_extra=
[ $PARTITIONS == 52 ] && _extra="q r s t u v w x y z \
[ $MAKEDEV_PARTITIONS == 52 ] && _extra="q r s t u v w x y z \
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z"
for d in a b c d e f g h i j k l m n o p $_extra
do