diff options
author | 2001-12-12 19:20:16 +0000 | |
---|---|---|
committer | 2001-12-12 19:20:16 +0000 | |
commit | 252c726432598a59dc3107360e92b7e5d20f923f (patch) | |
tree | 723bdb9482772956e34502f4e1ca24232ff7e18f | |
parent | add hifn and dc at pci (diff) | |
download | wireguard-openbsd-252c726432598a59dc3107360e92b7e5d20f923f.tar.xz wireguard-openbsd-252c726432598a59dc3107360e92b7e5d20f923f.zip |
/dev/crypto
-rw-r--r-- | etc/etc.macppc/MAKEDEV | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/etc/etc.macppc/MAKEDEV b/etc/etc.macppc/MAKEDEV index e317f44dee3..8608c5e8f10 100644 --- a/etc/etc.macppc/MAKEDEV +++ b/etc/etc.macppc/MAKEDEV @@ -1,5 +1,5 @@ #!/bin/sh - -# $OpenBSD: MAKEDEV,v 1.3 2001/11/06 23:46:05 drahn Exp $ +# $OpenBSD: MAKEDEV,v 1.4 2001/12/12 19:20:16 jason Exp $ # # Copyright (c) 1990 The Regents of the University of California. # All rights reserved. @@ -169,6 +169,7 @@ all) sh $this usbs sh $this iop0 iop1 sh $this apm + sh $this crypto sh $this local ;; @@ -467,6 +468,11 @@ audio*) [ -e audioctl ] || ln -s $audioctl audioctl ;; +crypto) + rm -f crypto + mknod crypto c 47 0 ; chmod 666 crypto + ;; + apm*) rm -f apm apmctl mknod apm c 25 0 |