add 'ipl' device node entry, for ip-filter.
This commit is contained in:
parent
863a668514
commit
2fadfb1a2f
|
@ -1,6 +1,6 @@
|
|||
#!/bin/sh -
|
||||
#
|
||||
# $NetBSD: MAKEDEV,v 1.46 1997/01/01 23:46:21 pk Exp $
|
||||
# $NetBSD: MAKEDEV,v 1.47 1997/01/07 08:04:19 veego Exp $
|
||||
#
|
||||
# Copyright (c) 1990 The Regents of the University of California.
|
||||
# All rights reserved.
|
||||
|
@ -69,6 +69,7 @@
|
|||
# Special purpose devices:
|
||||
# fd file descriptors
|
||||
# bpf* packet filter
|
||||
# ipl ip filter
|
||||
# speaker pc speaker (XXX - installed)
|
||||
# lkm loadable kernel modules interface
|
||||
# audio audio device
|
||||
|
@ -89,7 +90,7 @@ case $i in
|
|||
all)
|
||||
sh $0 std fd wt0 fd0 fd1 wd0 wd1 sd0 sd1 sd2 tty0 tty1 pty0 pty1
|
||||
sh $0 st0 st1 ch0 cd0 cd1 mcd0 vnd0 vnd1 lpa0 lpa1 lpa2
|
||||
sh $0 lpt0 lpt1 lpt2 ttyv0 bpf0 bpf1 bpf2 bpf3 tun0 tun1
|
||||
sh $0 lpt0 lpt1 lpt2 ttyv0 bpf0 bpf1 bpf2 bpf3 tun0 tun1 ipl
|
||||
sh $0 ccd0 ccd1 ccd2 ccd3 md0 ss0 ch0 uk0 uk1
|
||||
sh $0 speaker lkm mms0 lms0 pms0 audio joy0 joy1 apm local
|
||||
sh $0 ttyv0 ttyv1 ttyv2 ttyv3 ttyv4 ttyv5 ttyv6 ttyv7 ttyv8
|
||||
|
@ -312,6 +313,13 @@ bpf*|tun*|mms*|lms*|pms*|joy*)
|
|||
chown root.wheel $name$unit
|
||||
;;
|
||||
|
||||
ipl)
|
||||
rm -f ipl
|
||||
mknod ipl c 44 0
|
||||
chown root.wheel ipl
|
||||
chmod 600 ipl
|
||||
;;
|
||||
|
||||
speaker) # (XXX - installed)
|
||||
rm -f speaker
|
||||
mknod speaker c 27 0
|
||||
|
|
Loading…
Reference in New Issue