INSTALL.awe
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:4k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. ================================================================
  2. INSTALLATION OF AWE32 SOUND DRIVER FOR LINUX
  3. Takashi Iwai <iwai@ww.uni-erlangen.de>
  4. ================================================================
  5. ----------------------------------------------------------------
  6. * Attention to SB-PnP Card Users
  7. If you're using PnP cards, the initialization of PnP is required
  8. before loading this driver.  You have now three options:
  9.   1. Use isapnptools.
  10.   2. Use in-kernel isapnp support.
  11.   3. Initialize PnP on DOS/Windows, then boot linux by loadlin.
  12. In this document, only the case 1 case is treated.
  13. ----------------------------------------------------------------
  14. * Installation on Red Hat 5.0 Sound Driver
  15. Please use install-rh.sh under RedHat5.0 directory.
  16. DO NOT USE install.sh below.
  17. See INSTALL.RH for more details.
  18. ----------------------------------------------------------------
  19. * Installation/Update by Shell Script
  20.   1. Become root
  21. % su
  22.   2. If you have never configured the kernel tree yet, run make config
  23.     once (to make dependencies and symlinks).
  24. # cd /usr/src/linux
  25. # make xconfig
  26.     
  27.   3. Run install.sh script
  28. # sh ./install.sh
  29.   4. Configure your kernel
  30. (for Linux 2.[01].x user)
  31. # cd /usr/src/linux
  32. # make xconfig (or make menuconfig)
  33. (for Linux 1.2.x user)
  34. # cd /usr/src/linux
  35. # make config
  36.     Answer YES to both "lowlevel drivers" and "AWE32 wave synth" items 
  37.     in Sound menu.  ("lowlevel drivers" will appear only in 2.x
  38.     kernel.)
  39.   5. Make your kernel (and modules), and install them as usual.
  40. 5a. make kernel image
  41. # make zImage
  42. 5b. make modules and install them
  43. # make modules && make modules_install
  44. 5c. If you're using lilo, copy the kernel image and run lilo.
  45.     Otherwise, copy the kernel image to suitable directory or
  46.     media for your system.
  47.   6. Reboot the kernel if necessary.
  48. - If you updated only the modules, you don't have to reboot
  49.   the system.  Just remove the old sound modules here.
  50. in 
  51. # rmmod sound.o (linux-2.0 or OSS/Free)
  52. # rmmod awe_wave.o (linux-2.1)
  53.   7. If your AWE card is a PnP and not initialized yet, you'll have to
  54.     do it by isapnp tools.  Otherwise, skip to 8.
  55. This section described only a brief explanation.  For more
  56. details, please see the AWE64-Mini-HOWTO or isapnp tools FAQ.
  57. 7a. If you have no isapnp.conf file, generate it by pnpdump.
  58.     Otherwise, skip to 7d.
  59. # pnpdump > /etc/isapnp.conf
  60. 7b. Edit isapnp.conf file.  Comment out the appropriate
  61.     lines containing desirable I/O ports, DMA and IRQs.
  62.     Don't forget to enable (ACT Y) line.
  63. 7c. Add two i/o ports (0xA20 and 0xE20) in WaveTable part.
  64.     ex)
  65. (CONFIGURE CTL0048/58128 (LD 2
  66. #     ANSI string -->WaveTable<--
  67.   (IO 0 (BASE 0x0620))
  68.   (IO 1 (BASE 0x0A20))
  69.   (IO 2 (BASE 0x0E20))
  70.   (ACT Y)
  71. ))
  72. 7d. Load the config file.
  73.     CAUTION: This will reset all PnP cards!
  74. # isapnp /etc/isapnp.conf
  75.   8. Load the sound module (if you configured it as a module):
  76. for 2.0 kernel or OSS/Free monolithic module:
  77. # modprobe sound.o
  78. for 2.1 kernel:
  79. # modprobe sound
  80. # insmod uart401
  81. # insmod sb io=0x220 irq=5 dma=1 dma16=5 mpu_io=0x330
  82. (These values depend on your settings.)
  83. # insmod awe_wave
  84. (Be sure to load awe_wave after sb!)
  85. See /usr/src/linux/Documentation/sound/AWE32 for
  86. more details.
  87.   9. (only for obsolete systems) If you don't have /dev/sequencer
  88.      device file, make it according to Readme.linux file on
  89.      /usr/src/linux/drivers/sound. (Run a shell script included in
  90.      that file). <-- This file no longer exists in the recent kernels!
  91.   10. OK, load your own soundfont file, and enjoy MIDI!
  92. % sfxload synthgm.sbk
  93. % drvmidi foo.mid
  94.   11. For more advanced use (eg. dynamic loading, virtual bank and
  95.       etc.), please read the awedrv FAQ or the instructions in awesfx
  96.       and awemidi packages.
  97. Good luck!