diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2015-10-23 15:10:54 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2015-10-23 15:10:54 +0000 |
commit | 8198e6d7522509800c26a6a045708e6e0cad691a (patch) | |
tree | bb8ce202e8fac4e8f910e9c729d4d41f85fe5b9b /sys/arch/alpha | |
parent | da64f9f63c6d4403850bcac66dfe41b50e0c79ce (diff) |
Allocate a new major for tap(4) also note that pseudo-device tun is for tap
as well. OK dlg@ mpi@
Diffstat (limited to 'sys/arch/alpha')
-rw-r--r-- | sys/arch/alpha/alpha/conf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/alpha/alpha/conf.c b/sys/arch/alpha/alpha/conf.c index a700c5e1f9c..9c96d30ab1c 100644 --- a/sys/arch/alpha/alpha/conf.c +++ b/sys/arch/alpha/alpha/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.78 2014/12/11 19:44:16 tedu Exp $ */ +/* $OpenBSD: conf.c,v 1.79 2015/10/23 15:10:52 claudio Exp $ */ /* $NetBSD: conf.c,v 1.16 1996/10/18 21:26:57 cgd Exp $ */ /*- @@ -200,6 +200,7 @@ struct cdevsw cdevsw[] = cdev_notdef(), /* 65: was urio */ cdev_notdef(), /* 66: was USB scanners */ cdev_fuse_init(NFUSE,fuse), /* 67: fuse */ + cdev_tun_init(NTUN,tap), /* 68: Ethernet network tunnel */ }; int nchrdev = nitems(cdevsw); |