This is a very ALPHA driver for the cipher 9000 card with a M995 tape drive.
We use it to copy old remote sensing data over to newer drives.  To install,
copy cipher.c to linux/drivers/char, and cipher.h to linux/include/linux,
and add the following to the Makefile in linux/drivers/char:

ifdef CONFIG_CIPHER_TAPE
OBJS := $(OBJS) cipher.o
SRCS := $(SRCS) cipher.c
else
MODULES := $(MODULES) cipher.o
endif

and add the following to mem.c in linux/drivers/char:

#include <linux/cipher.h>

...

#ifdef CONFIG_CIPHER_TAPE
	mem_start = cipher_init(mem_start);
#endif


If you don't know where to add them to the files, tough.  This is where the
support ends (unless I make a major bug fix...)

-----------------------------------------------------------------------------
Thomas J. Moore, Amiga Developer  | Parallel Processing:  The future of PC's
inet:  dark@mama.indstate.edu     | Must .... Kill .... Bugs.... AAARRRGGHHH
-----------------------------------------------------------------------------
