Skip to Content.
Sympa Menu

baslinux - Re: [BL] Sound (was Re: DSL question)

baslinux AT lists.ibiblio.org

Subject: Baslinux mailing list

List archive

Chronological Thread  
  • From: sindi keesan <keesan AT sdf.lonestar.org>
  • To: baslinux AT lists.ibiblio.org
  • Subject: Re: [BL] Sound (was Re: DSL question)
  • Date: Fri, 30 Dec 2005 20:12:34 +0000 (UTC)

I think he included a script to insmod them all. You may need to
fiddle with the irq and possible the io numbers.

/etc/rc is below. comments welcomed

Thanks,

Sheldon Isaac


If you have DOS,
you can get a DOS diagnostic program for SB16 at my website that will
give you the io, irq and dma values (but you need more than this to
make AWE work in linux)

http://keesan.freeshell.org/bl/diagnose.exe

less /proc/interrupts lists what is in use. You have a lot of
modules loaded in rc and maybe irq10 is already taken by rtl8139.
Why not use irq=5?

less /proc/dma - try changing dma from 1 to 0 or 2 if 1 is taken

Perhaps the .wav included is 8-bit not 16-bit, and the Windows one
is 16-bit, and you need a dma16=5 to get it to play?
(I don't really understand these things, just guessing).

=============
#!/bin/sh
PATH=/sbin:/usr/sbin:/bin:/usr/bin
swapon -a
sync
e2fsck -pf /dev/hda8 2>/dev/null
## mount -avt nonfs
hostname BasicLinux
ifconfig lo 127.0.0.1
route add -net 127.0.0.0 netmask 255.0.0.0 lo

insmod vfat
mount -avt nonfs

###########

insmod soundcore
insmod sound
insmod uart401
insmod sb io=0x220 irq=10 dma=1

###########

##_ACTIVATE_CD_DRIVE_##
insmod cdrom
insmod ide-cd
insmod isofs

####_ACTIVATE_PCMCIA_####
# /etc/pcmcia/start

insmod rtl8139
###_ACTIVATE ETHERNET_###
ifconfig eth0 192.168.1.2 up

##_ACTIVATE_PPP_##
insmod slhc
insmod ppp

## setterm -foreground white -bold on
setterm -bold

cat /etc/issue



_______________________________________________
BasLinux mailing list
BasLinux AT lists.ibiblio.org
http://lists.ibiblio.org/mailman/listinfo/baslinux


keesan AT sdf.lonestar.org
SDF Public Access UNIX System - http://sdf.lonestar.org




Archive powered by MHonArc 2.6.24.

Top of Page