|
@ -1,5 +1,5 @@ |
|
|
#!/bin/sh - |
|
|
#!/bin/sh - |
|
|
# $OpenBSD: MAKEDEV,v 1.53 1998/11/25 04:58:55 millert Exp $ |
|
|
|
|
|
|
|
|
# $OpenBSD: MAKEDEV,v 1.54 1998/12/29 07:59:25 deraadt Exp $ |
|
|
# |
|
|
# |
|
|
# Copyright (c) 1990 The Regents of the University of California. |
|
|
# Copyright (c) 1990 The Regents of the University of California. |
|
|
# All rights reserved. |
|
|
# All rights reserved. |
|
@ -81,6 +81,7 @@ |
|
|
# tun* network tunnel driver |
|
|
# tun* network tunnel driver |
|
|
# *random inkernal random data source |
|
|
# *random inkernal random data source |
|
|
# magma* magma card (makes 16 tty and 2 bpp) |
|
|
# magma* magma card (makes 16 tty and 2 bpp) |
|
|
|
|
|
# bpp* bpp |
|
|
# xfs* XFS filesystem devices |
|
|
# xfs* XFS filesystem devices |
|
|
# ipl IP filter log |
|
|
# ipl IP filter log |
|
|
|
|
|
|
|
@ -623,6 +624,11 @@ magma*) |
|
|
mknod bppm${unit}1 c 101 `add $offset 1` |
|
|
mknod bppm${unit}1 c 101 `add $offset 1` |
|
|
;; |
|
|
;; |
|
|
|
|
|
|
|
|
|
|
|
bpp*) |
|
|
|
|
|
unit=`expr $i : 'bpp\(.*\)'` |
|
|
|
|
|
mknod bpp${unit} c 104 `add $unit 0` |
|
|
|
|
|
;; |
|
|
|
|
|
|
|
|
random|srandom|urandom|prandom|arandom) |
|
|
random|srandom|urandom|prandom|arandom) |
|
|
rm -f random urandom srandom prandom arandom |
|
|
rm -f random urandom srandom prandom arandom |
|
|
mknod random c 119 0 |
|
|
mknod random c 119 0 |
|
|