diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2003-04-13 22:55:53 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2003-04-13 22:55:53 +0000 |
commit | 1f1416cd0f9b46a5dab104464331473d979ccad7 (patch) | |
tree | face1a1bdffbb55f8b1c57796af56385a4a924be /sys/arch/sparc/include | |
parent | 993dd75582bc1c1f6b4d565dff589cc656c46672 (diff) |
Add a simple driver for the SBus ``Prestoserve'' NVRAM cards.
The Legato Prestoserve NFS accelerator used to be very popular, back when
NFSv3 did not exist, and disks and network speeds were not as good as they
are now...
This driver does not attempt to play any game with filesystems, but will only
provide access to the cards NVRAM, as a block device.
If you have bright ideas on ``what to do with a few MB of battery-backed
memory'', I am interested in realistic suggestions!
Diffstat (limited to 'sys/arch/sparc/include')
-rw-r--r-- | sys/arch/sparc/include/conf.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/arch/sparc/include/conf.h b/sys/arch/sparc/include/conf.h index bcd92828dce..bc817336879 100644 --- a/sys/arch/sparc/include/conf.h +++ b/sys/arch/sparc/include/conf.h @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.h,v 1.16 2002/08/12 10:44:04 miod Exp $ */ +/* $OpenBSD: conf.h,v 1.17 2003/04/13 22:55:51 miod Exp $ */ /* $NetBSD: conf.h,v 1.8 1996/12/31 07:12:43 mrg Exp $ */ /* @@ -60,6 +60,9 @@ cdev_decl(xd); bdev_decl(xy); cdev_decl(xy); +bdev_decl(presto); +cdev_decl(presto); + /* open, close, write, ioctl */ #define cdev_bpp_init(c,n) { \ dev_init(c,n,open), dev_init(c,n,close), (dev_type_read((*))) enodev, \ |