diff options
author | Martin Natano <natano@cvs.openbsd.org> | 2016-04-28 18:17:33 +0000 |
---|---|---|
committer | Martin Natano <natano@cvs.openbsd.org> | 2016-04-28 18:17:33 +0000 |
commit | a8c89524b91a8c823eccd1342ac80a27dfe17513 (patch) | |
tree | c1b687cf7d3ed49a59fdf34236fbd65e007ec7e3 /etc/etc.octeon | |
parent | b9f02280d813c23d9936bfad950ceee7e59deae4 (diff) |
Replace /dev/bpf[0-9] with /dev/bpf and /dev/bpf0. The /dev/bpf node is
unused for now, but I plan to convert all programs in base to use it in
a future diff. /dev/bpf0 is for compatibility with existing binaries
and is to be removed after a transition period.
ok rpe krw, for the installer part
"Let's see it hit the tree." deraadt
Diffstat (limited to 'etc/etc.octeon')
-rw-r--r-- | etc/etc.octeon/MAKEDEV | 22 | ||||
-rw-r--r-- | etc/etc.octeon/MAKEDEV.md | 3 |
2 files changed, 12 insertions, 13 deletions
diff --git a/etc/etc.octeon/MAKEDEV b/etc/etc.octeon/MAKEDEV index 46a540201a4..e0d6c19a29b 100644 --- a/etc/etc.octeon/MAKEDEV +++ b/etc/etc.octeon/MAKEDEV @@ -4,7 +4,7 @@ # generated from: # # OpenBSD: etc.octeon/MAKEDEV.md,v 1.9 2016/04/25 20:38:11 tedu Exp -# OpenBSD: MAKEDEV.common,v 1.85 2016/02/05 06:29:45 uebayasi Exp +# OpenBSD: MAKEDEV.common,v 1.86 2016/04/25 20:39:42 tedu Exp # OpenBSD: MAKEDEV.mi,v 1.82 2016/03/12 17:58:59 espie Exp # OpenBSD: MAKEDEV.sub,v 1.14 2005/02/07 06:14:18 david Exp # @@ -59,7 +59,7 @@ # Special purpose devices: # audio* Audio devices # bio ioctl tunnel pseudo-device -# bpf* Berkeley Packet Filter +# bpf Berkeley Packet Filter # diskmap Disk mapper # fd fd/* nodes # fuse Userland Filesystem @@ -274,8 +274,9 @@ diskmap) M diskmap c 70 0 640 operator ;; -bpf*) - M bpf$U c 12 $U 600 +bpf) + M bpf c 12 0 600 + M bpf0 c 12 0 600 ;; bio) @@ -413,18 +414,17 @@ local) ramdisk) R octcf0 diskmap bio pty0 rd0 cd0 cd1 st0 st1 wd0 wd1 wd2 wd3 - R wd4 sd0 sd1 sd2 sd3 sd4 tty00 tty01 bpf0 std + R wd4 sd0 sd1 sd2 sd3 sd4 tty00 tty01 bpf std ;; all) R octcf0 vnd0 vnd1 vnd2 vnd3 sd0 sd1 sd2 sd3 sd4 sd5 sd6 sd7 R sd8 sd9 cd0 cd1 rd0 tap0 tap1 tap2 tap3 tun0 tun1 tun2 tun3 - R bio bpf0 bpf1 bpf2 bpf3 bpf4 bpf5 bpf6 bpf7 bpf8 bpf9 pty0 - R pty1 pty2 diskmap vscsi0 ch0 audio0 audio1 audio2 fuse pppx - R hotplug ptm local wscons pci0 pci1 pci2 pci3 uall video0 - R video1 uk0 random tty00 tty01 tty02 tty03 tty04 tty05 tty06 - R tty07 tty08 tty09 tty0a tty0b pf wd0 wd1 wd2 wd3 std st0 st1 - R fd + R bio pty0 pty1 pty2 diskmap vscsi0 ch0 audio0 audio1 audio2 + R bpf fuse pppx hotplug ptm local wscons pci0 pci1 pci2 pci3 + R uall video0 video1 uk0 random tty00 tty01 tty02 tty03 tty04 + R tty05 tty06 tty07 tty08 tty09 tty0a tty0b pf wd0 wd1 wd2 wd3 + R std st0 st1 fd ;; octcf*|wd*|sd*) diff --git a/etc/etc.octeon/MAKEDEV.md b/etc/etc.octeon/MAKEDEV.md index b8ca248fb73..4c3edd98bef 100644 --- a/etc/etc.octeon/MAKEDEV.md +++ b/etc/etc.octeon/MAKEDEV.md @@ -1,6 +1,6 @@ define(MACHINE,octeon)dnl vers(__file__, - {-$OpenBSD: MAKEDEV.md,v 1.9 2016/04/25 20:38:11 tedu Exp $-}, + {-$OpenBSD: MAKEDEV.md,v 1.10 2016/04/28 18:17:31 natano Exp $-}, etc.MACHINE)dnl dnl dnl Copyright (c) 2001-2006 Todd T. Fries <todd@OpenBSD.org> @@ -95,7 +95,6 @@ target(all, ch, 0)dnl target(all, vscsi, 0)dnl target(all, diskmap)dnl target(all, pty, 0, 1, 2)dnl -target(all, bpf, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9)dnl target(all, bio)dnl target(all, tun, 0, 1, 2, 3)dnl target(all, tap, 0, 1, 2, 3)dnl |