mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-16 07:11:05 +01:00
Use shifts instead of multiplications and |' instead of
+' to simplify
dkminor(). Use $((1 << 29)) instead of a mysterious decimal number for $scisctl. Use dkminor() instead of repeating part of it for special cases. Shortened some long lines.
This commit is contained in:
parent
2c175ef3f5
commit
def920e3ec
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=22027
10
etc/MAKEDEV
10
etc/MAKEDEV
@ -134,7 +134,7 @@ dkitos() {
|
||||
# Convert disk (type, unit, slice, partition) to minor number
|
||||
dkminor()
|
||||
{
|
||||
echo $((512 * 65536 * $1 + $2 / 32 * 2097152 + $2 % 32 * 8 + 65536 * $3 + $4))
|
||||
echo $(($1 << 25 | ($2 / 32) << 21 | ($2 % 32) << 3 | $3 << 16 | $4))
|
||||
}
|
||||
|
||||
# Convert the last character of a tty name to a minor number.
|
||||
@ -161,7 +161,7 @@ dkcompatslice=0
|
||||
dkrawslice=1
|
||||
|
||||
# Control bit for SCSI
|
||||
scsictl=536870912
|
||||
scsictl=$((1 << 29))
|
||||
|
||||
# Standard umasks
|
||||
disk_umask=037 # allow group operator to read disks
|
||||
@ -428,7 +428,8 @@ od*|sd*|vn*|wd*)
|
||||
case $name in
|
||||
od|sd)
|
||||
rm -f r${name}${unit}.ctl
|
||||
mknod r${name}${unit}.ctl c $chr `expr $unit / 32 '*' 2097152 + $unit % 32 '*' 8 + $scsictl `
|
||||
minor=`dkminor 0 $unit 0 0`
|
||||
mknod r${name}${unit}.ctl c $chr $(($minor | $scsictl))
|
||||
chmod 600 r${name}${unit}.ctl
|
||||
;;
|
||||
esac
|
||||
@ -448,7 +449,8 @@ ccd*)
|
||||
case $unit in
|
||||
[0-9]|[0-9][0-9]|[0-4][0-9][0-9]|50[0-9]|51[0-1])
|
||||
rm -f r${name}${unit}.ctl
|
||||
mknod r${name}${unit}.ctl c $chr `expr $unit / 32 '*' 2097152 + $unit % 32 '*' 8 + $scsictl `
|
||||
minor=`dkminor 0 $unit 0 0`
|
||||
mknod r${name}${unit}.ctl c $chr $(($minor | $scsictl))
|
||||
chmod 600 r${name}${unit}.ctl
|
||||
for part in 0 1 2 3 4 5 6 7
|
||||
do
|
||||
|
@ -134,7 +134,7 @@ dkitos() {
|
||||
# Convert disk (type, unit, slice, partition) to minor number
|
||||
dkminor()
|
||||
{
|
||||
echo $((512 * 65536 * $1 + $2 / 32 * 2097152 + $2 % 32 * 8 + 65536 * $3 + $4))
|
||||
echo $(($1 << 25 | ($2 / 32) << 21 | ($2 % 32) << 3 | $3 << 16 | $4))
|
||||
}
|
||||
|
||||
# Convert the last character of a tty name to a minor number.
|
||||
@ -161,7 +161,7 @@ dkcompatslice=0
|
||||
dkrawslice=1
|
||||
|
||||
# Control bit for SCSI
|
||||
scsictl=536870912
|
||||
scsictl=$((1 << 29))
|
||||
|
||||
# Standard umasks
|
||||
disk_umask=037 # allow group operator to read disks
|
||||
@ -428,7 +428,8 @@ od*|sd*|vn*|wd*)
|
||||
case $name in
|
||||
od|sd)
|
||||
rm -f r${name}${unit}.ctl
|
||||
mknod r${name}${unit}.ctl c $chr `expr $unit / 32 '*' 2097152 + $unit % 32 '*' 8 + $scsictl `
|
||||
minor=`dkminor 0 $unit 0 0`
|
||||
mknod r${name}${unit}.ctl c $chr $(($minor | $scsictl))
|
||||
chmod 600 r${name}${unit}.ctl
|
||||
;;
|
||||
esac
|
||||
@ -448,7 +449,8 @@ ccd*)
|
||||
case $unit in
|
||||
[0-9]|[0-9][0-9]|[0-4][0-9][0-9]|50[0-9]|51[0-1])
|
||||
rm -f r${name}${unit}.ctl
|
||||
mknod r${name}${unit}.ctl c $chr `expr $unit / 32 '*' 2097152 + $unit % 32 '*' 8 + $scsictl `
|
||||
minor=`dkminor 0 $unit 0 0`
|
||||
mknod r${name}${unit}.ctl c $chr $(($minor | $scsictl))
|
||||
chmod 600 r${name}${unit}.ctl
|
||||
for part in 0 1 2 3 4 5 6 7
|
||||
do
|
||||
|
Loading…
Reference in New Issue
Block a user