diff options
author | dm <dm@cvs.openbsd.org> | 1996-01-07 07:41:30 +0000 |
---|---|---|
committer | dm <dm@cvs.openbsd.org> | 1996-01-07 07:41:30 +0000 |
commit | 4e3a942ae0d30612f7b4cc1e7ba1cb6eabcf02f1 (patch) | |
tree | 2e302d9141ec95e4911969a64a5426e87f0b92fc /etc/etc.pc532/MAKEDEV | |
parent | fc0ed9c5a8064743686bd8b50c6a34ef4837f150 (diff) |
created devices for the IP filter log on all architectures
Diffstat (limited to 'etc/etc.pc532/MAKEDEV')
-rw-r--r-- | etc/etc.pc532/MAKEDEV | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/etc/etc.pc532/MAKEDEV b/etc/etc.pc532/MAKEDEV index 369102cf209..5cb9cf4f047 100644 --- a/etc/etc.pc532/MAKEDEV +++ b/etc/etc.pc532/MAKEDEV @@ -62,7 +62,7 @@ case $i in all) sh MAKEDEV std fd sd0 sd1 sd2 st0 st1 cd0 cd1 sh MAKEDEV tty0 tty1 tty2 tty3 tty4 tty5 tty6 tty7 - sh MAKEDEV pty0 pty1 vnd0 vnd1 bpf0 bpf1 bpf2 bpf3 + sh MAKEDEV pty0 pty1 vnd0 vnd1 bpf0 bpf1 bpf2 bpf3 ipl sh MAKEDEV tun0 tun1 tun2 lkm sh MAKEDEV ccd0 ccd1 ccd2 ccd3 ;; @@ -223,6 +223,11 @@ bpf*) chown root.wheel bpf$unit ;; +ipl) + mknod ipl c 19 0 + chown root.wheel ipl + ;; + tun*) unit=`expr $i : 'tun\(.*\)'` rm -f tun$unit |