Sound Card Driver version 1.0

This directory contains the driver for various PC soundcards. 
The following cards are supported:

AdLib
SoundBlaster (1.0-2.0) and compatibles, including
  ThunderBoard and Ati Stereo F/X.
SoundBlaster Pro and SB Pro 2
ProAudioSpectrum 16
  ProAudioSpectrum+ is not supported yet.
  (The original ProAudioSpectrum is not supported 
  (and propably will not be in the near future)).

Additional utilities and data files can be found from
tsx-11.mit.edu (pub/linux/ALPHA/sound) and nic.funet.fi
(pub/OS/Linux/xtra/snd-kit). Look at the Readme file included
in the snd-util-n.m.tar.Z for further documentation.

If you have any problems, please contact me.

Installing and compiling the driver
-----------------------------------

0)	Install the kernel sources (0.99.4 or later) and the
	snd-driv-1.0.tar.Z. (You have already done this).

1)	Apply the patch (linux-0.99.5.sound.diff) against the
	kernel Makefile and config.in.

2)	Run "make config" in the Linux directory.

3)	"make clean" and "make dep"

4)	Recompile the kernel.

To build the device files you need to run the enclosed shell script.

Hannu Savolainen
hsavolai@cs.helsinki.fi

----------------- cut here ------------------------------
#!/bin/sh
#
#	soudinstall		
#
#		by Craig Metz - cmetz@thor.tjhsst.edu
#
# Create the devices
#
#	Mixer 		(14, 0)
#
if [ -e /dev/mixer ]; then 
	rm -f /dev/mixer 
fi
mknod -m 666 /dev/mixer c 14 0
#
#	Sequencer	(14, 1)
#
if [ -e /dev/sequencer ]; then
	rm -f /dev/sequencer
fi
mknod -m 666 /dev/sequencer c 14 1
#
#	MIDI		(14, 2)	[ Not implemented ]
#
if [ -e /dev/midi ]; then
	rm -f /dev/midi
fi
mknod -m 666 /dev/midi c 14 2
#
#	DSP		(14, 3)
#
if [ -e /dev/dsp ]; then
	rm -f /dev/dsp
fi
mknod -m 666 /dev/dsp c 14 3
#
#	SPARC audio	(14, 4)	[ Not fully implemented ]
#
if [ -e /dev/audio ]; then
	rm -f /dev/audio
fi
mknod -m 666 /dev/audio c 14 4
#
# Infringe on USL trade secrets
#
exit 0
