diff options
author | 2001-06-17 06:40:50 +0000 | |
---|---|---|
committer | 2001-06-17 06:40:50 +0000 | |
commit | 903b0ecefd70459c32bfad034c4bc764659527c0 (patch) | |
tree | 0a7cf2bcf01823c0513f130f7a9a08b7fab8d561 | |
parent | Interrupt storm problem on awacs fixed, not necessary to disable (diff) | |
download | wireguard-openbsd-903b0ecefd70459c32bfad034c4bc764659527c0.tar.xz wireguard-openbsd-903b0ecefd70459c32bfad034c4bc764659527c0.zip |
fix audio device creation.
-rw-r--r-- | etc/etc.powerpc/MAKEDEV | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/etc/etc.powerpc/MAKEDEV b/etc/etc.powerpc/MAKEDEV index d84d1456270..7d8f519a17c 100644 --- a/etc/etc.powerpc/MAKEDEV +++ b/etc/etc.powerpc/MAKEDEV @@ -1,5 +1,5 @@ #!/bin/sh - -# $OpenBSD: MAKEDEV,v 1.44 2001/05/30 02:11:24 deraadt Exp $ +# $OpenBSD: MAKEDEV,v 1.45 2001/06/17 06:40:50 brad Exp $ # # Copyright (c) 1990 The Regents of the University of California. # All rights reserved. @@ -437,11 +437,11 @@ cd*) audio*) major=44 - audio=audio$n - sound=sound$n - mixer=mixer$n - audioctl=audioctl$n - rm -f $audio $sound $mixer $audioctl + audio=audio$unit + sound=sound$unit + mixer=mixer$unit + audioctl=audioctl$unit + rm -f $sound $audio $mixer $audioctl mknod $sound c $major $unit mknod $audio c $major $(( $unit + 128 )) mknod $mixer c $major $(( $unit + 16 )) |