diff options
author | Jason Wright <jason@cvs.openbsd.org> | 2001-12-12 19:20:17 +0000 |
---|---|---|
committer | Jason Wright <jason@cvs.openbsd.org> | 2001-12-12 19:20:17 +0000 |
commit | b159058719edbecc875394519ef470b7b457b1b6 (patch) | |
tree | 44095abdf886c5b03d6e7b571cba49fcd8b44837 /etc | |
parent | 06d285dcf4af893d866ce522fe93cb4a023ce855 (diff) |
/dev/crypto
Diffstat (limited to 'etc')
-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 |