View previous topic :: View next topic |
Author |
Message |
StarDragon Guru
Joined: 19 Jun 2005 Posts: 390 Location: tEXas
|
Posted: Fri Jul 01, 2005 4:33 pm Post subject: emu10k1x alsa-drvier emerge problem |
|
|
When I emerge the alsa-driver package the emu10k1x module does not get compiled into the package, here is my make.conf file:
# These settings were set by the catalyst build script that automatically built this stage
# Please consult /etc/make.conf.example for a more detailed example
CFLAGS="-O2 -fomit-frame-pointer -pipe -march=athlon -mmmx -m3dnow"
CHOST="i686-pc-linux-gnu"
CXXFLAGS="${CFLAGS}"
MAKEOPTS="-j2"
GENTOO_MIRRORS="http://gentoo.osuosl.org/ ftp://distro.ibiblio.org/pub/linux/distributions/gentoo/ http://distro.ibiblio.org/pub/linux/distributions/gentoo/"
SYNC="rsync://rsync.us.gentoo.org/gentoo-portage"
USE="symlink gnome -kde hal howl"
ALSA_CARDS="emu10k1x"
ALSA_CARDS="ens1371"
Thanks, _________________ "After all, a person's a person, no matter how small."--Horton Hears A Who! |
|
Back to top |
|
|
NeddySeagoon Administrator
Joined: 05 Jul 2003 Posts: 54785 Location: 56N 3W
|
Posted: Fri Jul 01, 2005 6:41 pm Post subject: |
|
|
StarDragon,
The second line overrides the first.
Code: | ALSA_CARDS="emu10k1x ens1371" | is what you need. There is a way of splitting it over many lines too
Something like Code: | ALSA_CARDS="emu10k1x"
ALSA_CARDS=${ALSA_CARDS}+" ens1371" | may work but I have not tried it. _________________ Regards,
NeddySeagoon
Computer users fall into two groups:-
those that do backups
those that have never had a hard drive fail. |
|
Back to top |
|
|
StarDragon Guru
Joined: 19 Jun 2005 Posts: 390 Location: tEXas
|
Posted: Fri Jul 01, 2005 7:25 pm Post subject: |
|
|
Oooooooh! Boy I feel dumb, pretty sure that's the impression I got when I read the ALSA Guide.
Anyway, thanks! _________________ "After all, a person's a person, no matter how small."--Horton Hears A Who! |
|
Back to top |
|
|
|