1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
==============================================================================
INSTALLATION OF AWEDRV-0.4 FOR FREEBSD
==============================================================================
----------------------------------------------------------------
Adding Driver to Kernel
----------------------------------------------------------------
1. Copy source files on the system directory:
# cp *.[ch] to /usr/src/sys/i386/isa/sound
2. Edit awe_config.h (if necessary):
See README.awe for the meaning of each option.
*NOTE: Ver.0.4 can allocate buffers dynamically, so NO need to change
AWE_MAX_SAMPLES and AWE_MAX_INFOS.
3. If you're running FreeBSD >= 2.2 (or already installed AWE driver),
skip to step 7.
4. Apply a patch to sound driver source:
# cd /usr/src
# patch < voxware-freebsd-awe.diff
5. Make symlink of soundcard.h:
# rm -f /usr/include/machine/soundcard.h
# ln -s /usr/src/sys/i386/include/soundcard.h /usr/include/machine
6. Edit /usr/src/sys/i386/conf/files.i386:
(Add this line):
i386/isa/sound/awe_wave.c optional awe device-driver
7. Edit <kernel config file> -- Add an awe0 line; e.g.:
controller snd0
device sb0 at isa? port 0x220 irq 5 drq 1 vector sbintr
device sbxvi0 at isa? drq 5
device sbmidi0 at isa? port 0x330
device opl0 at isa? port 0x388
device awe0 at isa? port 0x620
8. Rebuild kernel, install it, and reboot.
See FAQ at http://bahamut.mm.t.u-tokyo.ac.jp/~iwai/awedrv for info on
loading samples into the card via AWE driver.
----------------------------------------------------------------
AWESFX Utilities
----------------------------------------------------------------
The current package supports FreeBSD.
----------------------------------------------------------------
AWEMIDI Player
----------------------------------------------------------------
The current package supports FreeBSD.
Tk interface works fine.
|