diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2013-06-03 15:54:49 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2013-06-03 15:54:49 +0000 |
commit | 378984635a1cc64b5abdeaf657989badae279f5e (patch) | |
tree | d0909e4771ff59c57ec90aa418aa88b6e87c6132 /sys/arch/hp300 | |
parent | 62a9ebcc8468d105a2771647e78946f73596ac9c (diff) |
changes for isc fuse support. not enabled. ok beck deraadt.
from Sylvestre Gallon ccna.syl gmail.com
Diffstat (limited to 'sys/arch/hp300')
-rw-r--r-- | sys/arch/hp300/hp300/conf.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/hp300/hp300/conf.c b/sys/arch/hp300/hp300/conf.c index 0b4a3fcc8c3..70ead37cdd7 100644 --- a/sys/arch/hp300/hp300/conf.c +++ b/sys/arch/hp300/hp300/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.54 2012/08/23 06:12:49 deraadt Exp $ */ +/* $OpenBSD: conf.c,v 1.55 2013/06/03 15:54:47 tedu Exp $ */ /* $NetBSD: conf.c,v 1.39 1997/05/12 08:17:53 thorpej Exp $ */ /*- @@ -111,6 +111,7 @@ cdev_decl(fd); #include "vscsi.h" #include "pppx.h" #include "hotplug.h" +#include "fuse.h" struct cdevsw cdevsw[] = { @@ -171,6 +172,7 @@ struct cdevsw cdevsw[] = cdev_disk_init(1,diskmap), /* 54: disk mapper */ cdev_pppx_init(NPPPX,pppx), /* 55: pppx */ cdev_hotplug_init(NHOTPLUG,hotplug), /* 56: devices hot plugging */ + cdev_fuse_init(NFUSE,fuse), /* 57: fuse */ }; int nchrdev = nitems(cdevsw); |