* fedora core alsaconf patch
@ 2003-11-21 23:40 Fernando Pablo Lopez-Lezcano
2003-11-22 10:18 ` Lars Heineken
2003-11-24 11:45 ` fedora core alsaconf patch Takashi Iwai
0 siblings, 2 replies; 11+ messages in thread
From: Fernando Pablo Lopez-Lezcano @ 2003-11-21 23:40 UTC (permalink / raw)
To: alsa-devel
[-- Attachment #1: Type: text/plain, Size: 332 bytes --]
Included is a patch that fixes alsaconf to work correctly under fedora
core 1. Otherwise alsaconf happily creates a modules.conf file that only
contains the alsa configuration and nothing else (a path in the if's
that does not create a $TMP file before the alsa configuration process
starts).
Please apply!
Thanks...
-- Fernando
[-- Attachment #2: alsa-utils-0.9.8-alsaconf.patch --]
[-- Type: text/plain, Size: 1068 bytes --]
--- alsa-utils-0.9.8/alsaconf/alsaconf.in~ 2003-10-30 04:00:38.000000000 -0800
+++ alsa-utils-0.9.8/alsaconf/alsaconf.in 2003-11-21 15:28:35.000000000 -0800
@@ -30,8 +30,10 @@
distribution="suse"
elif [ -f /etc/debian_version ]; then
distribution="debian"
-elif [ -f /etc/redhat-release ]; then
+elif [ -f /etc/redhat-release -a `grep -c "Red Hat" /etc/redhat-release 2>/dev/null` != 0 ]; then
distribution="redhat"
+elif [ -f /etc/fedora-release -a `grep -c "Fedora" /etc/fedora-release 2>/dev/null` != 0 ]; then
+ distribution="fedora"
else
distribution="unknown"
fi
@@ -532,10 +534,8 @@
SOUND_CORE="snd"
fi
- if [ "$distribution" = "redhat" ] ; then
- if grep -q "Red Hat" /etc/redhat-release >/dev/null 2>&1 ; then
- remove_ac_block < $cfgfile | remove_sndconfig_block | uniq > $TMP
- fi
+ if [ "$distribution" = "redhat" -o "$distribution" = "fedora" ] ; then
+ remove_ac_block < $cfgfile | remove_sndconfig_block | uniq > $TMP
else
remove_ac_block < $cfgfile | remove_y2_block | uniq > $TMP
fi
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: fedora core alsaconf patch
2003-11-21 23:40 fedora core alsaconf patch Fernando Pablo Lopez-Lezcano
@ 2003-11-22 10:18 ` Lars Heineken
2003-11-24 2:39 ` Fernando Pablo Lopez-Lezcano
2003-11-24 11:45 ` fedora core alsaconf patch Takashi Iwai
1 sibling, 1 reply; 11+ messages in thread
From: Lars Heineken @ 2003-11-22 10:18 UTC (permalink / raw)
Cc: alsa-devel
I think we need a similar extension to support Mandrake, after
installation from the sources all modules in modules.conf where gone,
except the ones from alsa.. :-)
>Included is a patch that fixes alsaconf to work correctly under fedora
>core 1. Otherwise alsaconf happily creates a modules.conf file that only
>contains the alsa configuration and nothing else (a path in the if's
>that does not create a $TMP file before the alsa configuration process
>starts).
>
-------------------------------------------------------
This SF.net email is sponsored by: SF.net Giveback Program.
Does SourceForge.net help you be more productive? Does it
help you create better code? SHARE THE LOVE, and help us help
YOU! Click Here: http://sourceforge.net/donate/
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: fedora core alsaconf patch
2003-11-22 10:18 ` Lars Heineken
@ 2003-11-24 2:39 ` Fernando Pablo Lopez-Lezcano
2003-11-24 14:59 ` [PATCH] add support for mandrake in alsaconf Thierry Vignaud
0 siblings, 1 reply; 11+ messages in thread
From: Fernando Pablo Lopez-Lezcano @ 2003-11-24 2:39 UTC (permalink / raw)
To: Lars Heineken; +Cc: alsa-devel
> I think we need a similar extension to support Mandrake, after
> installation from the sources all modules in modules.conf where gone,
> except the ones from alsa.. :-)
I think the patch will fix mandrake too. I have the dubious honor of
being able to claim ownership of the original bug :-( Anything having a
/etc/redhat-release file but without having "Red Hat" inside would
trigger the bug.
The currently result with Mandrake would be to use the SuSE filter to
try to erase the oss preferences from modules.conf. If the RedHat filter
is better then another "if" could be added to the distro selection code
to include Mandrake.
-- Fernando
> >Included is a patch that fixes alsaconf to work correctly under fedora
> >core 1. Otherwise alsaconf happily creates a modules.conf file that only
> >contains the alsa configuration and nothing else (a path in the if's
> >that does not create a $TMP file before the alsa configuration process
> >starts).
-------------------------------------------------------
This SF.net email is sponsored by: SF.net Giveback Program.
Does SourceForge.net help you be more productive? Does it
help you create better code? SHARE THE LOVE, and help us help
YOU! Click Here: http://sourceforge.net/donate/
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: fedora core alsaconf patch
2003-11-21 23:40 fedora core alsaconf patch Fernando Pablo Lopez-Lezcano
2003-11-22 10:18 ` Lars Heineken
@ 2003-11-24 11:45 ` Takashi Iwai
1 sibling, 0 replies; 11+ messages in thread
From: Takashi Iwai @ 2003-11-24 11:45 UTC (permalink / raw)
To: Fernando Pablo Lopez-Lezcano; +Cc: alsa-devel
At 21 Nov 2003 15:40:51 -0800,
Fernando Pablo Lopez-Lezcano wrote:
>
> Included is a patch that fixes alsaconf to work correctly under fedora
> core 1. Otherwise alsaconf happily creates a modules.conf file that only
> contains the alsa configuration and nothing else (a path in the if's
> that does not create a $TMP file before the alsa configuration process
> starts).
>
> Please apply!
thanks!
it's now on cvs.
btw, do you have still a problem of linux/workqueue.h on fedora core1
?
Takashi
-------------------------------------------------------
This SF.net email is sponsored by: SF.net Giveback Program.
Does SourceForge.net help you be more productive? Does it
help you create better code? SHARE THE LOVE, and help us help
YOU! Click Here: http://sourceforge.net/donate/
^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH] add support for mandrake in alsaconf
2003-11-24 2:39 ` Fernando Pablo Lopez-Lezcano
@ 2003-11-24 14:59 ` Thierry Vignaud
2003-11-24 15:15 ` Takashi Iwai
0 siblings, 1 reply; 11+ messages in thread
From: Thierry Vignaud @ 2003-11-24 14:59 UTC (permalink / raw)
To: Fernando Pablo Lopez-Lezcano; +Cc: Lars Heineken, alsa-devel
[-- Attachment #1: Type: text/plain, Size: 736 bytes --]
Fernando Pablo Lopez-Lezcano <nando@ccrma.Stanford.EDU> writes:
> > I think we need a similar extension to support Mandrake, after
> > installation from the sources all modules in modules.conf where
> > gone, except the ones from alsa.. :-)
>
> I think the patch will fix mandrake too. I have the dubious honor of
> being able to claim ownership of the original bug :-( Anything
> having a /etc/redhat-release file but without having "Red Hat"
> inside would trigger the bug.
>
> The currently result with Mandrake would be to use the SuSE filter
> to try to erase the oss preferences from modules.conf. If the RedHat
> filter is better then another "if" could be added to the distro
> selection code to include Mandrake.
untested:
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: alsa-mdk.diff --]
[-- Type: text/x-patch, Size: 751 bytes --]
Index: alsaconf/alsaconf.in
===================================================================
RCS file: /cvsroot/alsa/alsa-utils/alsaconf/alsaconf.in,v
retrieving revision 1.5
diff -u -p -r1.5 alsaconf.in
--- alsaconf/alsaconf.in 24 Nov 2003 11:42:24 -0000 1.5
+++ alsaconf/alsaconf.in 24 Nov 2003 14:58:43 -0000
@@ -24,6 +24,8 @@ if [ -f /etc/SuSE-release -o -f /etc/Uni
distribution="suse"
elif [ -f /etc/debian_version ]; then
distribution="debian"
+elif [ -f /etc/mandrake-release ]; then
+ distribution="mandrake"
elif [ -f /etc/redhat-release -a `grep -c "Red Hat" /etc/redhat-release 2>/dev/null` != 0 ]; then
distribution="redhat"
elif [ -f /etc/fedora-release -a `grep -c "Fedora" /etc/fedora-release 2>/dev/null` != 0 ]; then
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH] add support for mandrake in alsaconf
2003-11-24 14:59 ` [PATCH] add support for mandrake in alsaconf Thierry Vignaud
@ 2003-11-24 15:15 ` Takashi Iwai
2003-11-24 18:58 ` Fernando Pablo Lopez-Lezcano
0 siblings, 1 reply; 11+ messages in thread
From: Takashi Iwai @ 2003-11-24 15:15 UTC (permalink / raw)
To: Thierry Vignaud; +Cc: Fernando Pablo Lopez-Lezcano, Lars Heineken, alsa-devel
At Mon, 24 Nov 2003 14:59:42 +0000,
Thierry Vignaud wrote:
>
> [1 <text/plain (7bit)>]
> Fernando Pablo Lopez-Lezcano <nando@ccrma.Stanford.EDU> writes:
>
> > > I think we need a similar extension to support Mandrake, after
> > > installation from the sources all modules in modules.conf where
> > > gone, except the ones from alsa.. :-)
> >
> > I think the patch will fix mandrake too. I have the dubious honor of
> > being able to claim ownership of the original bug :-( Anything
> > having a /etc/redhat-release file but without having "Red Hat"
> > inside would trigger the bug.
> >
> > The currently result with Mandrake would be to use the SuSE filter
> > to try to erase the oss preferences from modules.conf. If the RedHat
> > filter is better then another "if" could be added to the distro
> > selection code to include Mandrake.
>
> untested:
shall i apply this? let me know.
Takashi
-------------------------------------------------------
This SF.net email is sponsored by: SF.net Giveback Program.
Does SourceForge.net help you be more productive? Does it
help you create better code? SHARE THE LOVE, and help us help
YOU! Click Here: http://sourceforge.net/donate/
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH] add support for mandrake in alsaconf
2003-11-24 15:15 ` Takashi Iwai
@ 2003-11-24 18:58 ` Fernando Pablo Lopez-Lezcano
2003-11-24 19:42 ` Thierry Vignaud
0 siblings, 1 reply; 11+ messages in thread
From: Fernando Pablo Lopez-Lezcano @ 2003-11-24 18:58 UTC (permalink / raw)
To: Takashi Iwai; +Cc: Thierry Vignaud, Lars Heineken, alsa-devel
> At Mon, 24 Nov 2003 14:59:42 +0000,
> Thierry Vignaud wrote:
> >
> > [1 <text/plain (7bit)>]
> > Fernando Pablo Lopez-Lezcano <nando@ccrma.Stanford.EDU> writes:
> >
> > > > I think we need a similar extension to support Mandrake, after
> > > > installation from the sources all modules in modules.conf where
> > > > gone, except the ones from alsa.. :-)
> > >
> > > I think the patch will fix mandrake too. I have the dubious honor of
> > > being able to claim ownership of the original bug :-( Anything
> > > having a /etc/redhat-release file but without having "Red Hat"
> > > inside would trigger the bug.
> > >
> > > The currently result with Mandrake would be to use the SuSE filter
> > > to try to erase the oss preferences from modules.conf. If the RedHat
> > > filter is better then another "if" could be added to the distro
> > > selection code to include Mandrake.
> >
> > untested:
>
> shall i apply this? let me know.
I think it does no harm but does not change the end result either. It
creates a new option ("mandrake") but there is no code to handle it so
the if's should just execute the SuSE (default) code as they do now.
Options:
a) define 'distribution="redhat"' for the mandrake detection code _if_
the oss options erasure for redhat works fine under mandrake (mandrake
users should test this).
b) add another handler for mandrake's modules.conf oss options (should
be written taking into account whatever mandrake uses to configure sound
so that the proper strings are removed from modules.conf).
-- Fernando
-------------------------------------------------------
This SF.net email is sponsored by: SF.net Giveback Program.
Does SourceForge.net help you be more productive? Does it
help you create better code? SHARE THE LOVE, and help us help
YOU! Click Here: http://sourceforge.net/donate/
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH] add support for mandrake in alsaconf
2003-11-24 18:58 ` Fernando Pablo Lopez-Lezcano
@ 2003-11-24 19:42 ` Thierry Vignaud
2003-11-24 20:03 ` Fernando Pablo Lopez-Lezcano
0 siblings, 1 reply; 11+ messages in thread
From: Thierry Vignaud @ 2003-11-24 19:42 UTC (permalink / raw)
To: Fernando Pablo Lopez-Lezcano; +Cc: Takashi Iwai, Lars Heineken, alsa-devel
[-- Attachment #1: Type: text/plain, Size: 1741 bytes --]
Fernando Pablo Lopez-Lezcano <nando@ccrma.Stanford.EDU> writes:
> > > > > I think we need a similar extension to support Mandrake,
> > > > > after installation from the sources all modules in
> > > > > modules.conf where gone, except the ones from alsa.. :-)
> > > >
> > > > I think the patch will fix mandrake too. I have the dubious
> > > > honor of being able to claim ownership of the original bug :-(
> > > > Anything having a /etc/redhat-release file but without having
> > > > "Red Hat" inside would trigger the bug.
> > > >
> > > > The currently result with Mandrake would be to use the SuSE
> > > > filter to try to erase the oss preferences from
> > > > modules.conf. If the RedHat filter is better then another "if"
> > > > could be added to the distro selection code to include
> > > > Mandrake.
> > >
> > > untested:
> >
> > shall i apply this? let me know.
>
> I think it does no harm but does not change the end result
> either. It creates a new option ("mandrake") but there is no code to
> handle it so the if's should just execute the SuSE (default) code as
> they do now.
>
> Options:
> a) define 'distribution="redhat"' for the mandrake detection code
> _if_ the oss options erasure for redhat works fine under mandrake
> (mandrake users should test this).
> b) add another handler for mandrake's modules.conf oss options
> (should be written taking into account whatever mandrake uses to
> configure sound so that the proper strings are removed from
> modules.conf).
so why not doing such as threat all distros that provide
/etc/redhat-release the same way. i don't think there's any distro
out that provide /etc/redhat-release for compatibility that would like
to have users loose their module configuration:
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: alsaconf.diff --]
[-- Type: text/x-patch, Size: 1142 bytes --]
Index: alsaconf/alsaconf.in
===================================================================
RCS file: /cvsroot/alsa/alsa-utils/alsaconf/alsaconf.in,v
retrieving revision 1.5
diff -u -p -r1.5 alsaconf.in
--- alsaconf/alsaconf.in 24 Nov 2003 11:42:24 -0000 1.5
+++ alsaconf/alsaconf.in 24 Nov 2003 19:40:54 -0000
@@ -24,10 +24,8 @@ if [ -f /etc/SuSE-release -o -f /etc/Uni
distribution="suse"
elif [ -f /etc/debian_version ]; then
distribution="debian"
-elif [ -f /etc/redhat-release -a `grep -c "Red Hat" /etc/redhat-release 2>/dev/null` != 0 ]; then
+elif [ -f /etc/redhat-release ]; then
distribution="redhat"
-elif [ -f /etc/fedora-release -a `grep -c "Fedora" /etc/fedora-release 2>/dev/null` != 0 ]; then
- distribution="fedora"
else
distribution="unknown"
fi
@@ -548,7 +546,7 @@ Do you want to modify ${cfgfile}?" 8 50
SOUND_CORE="snd"
fi
- if [ "$distribution" = "redhat" -o "$distribution" = "fedora" ] ; then
+ if [ "$distribution" = "redhat" ] ; then
remove_ac_block < $cfgfile | remove_sndconfig_block | uniq > $TMP
else
remove_ac_block < $cfgfile | remove_y2_block | uniq > $TMP
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH] add support for mandrake in alsaconf
2003-11-24 19:42 ` Thierry Vignaud
@ 2003-11-24 20:03 ` Fernando Pablo Lopez-Lezcano
2003-11-24 20:33 ` Thierry Vignaud
0 siblings, 1 reply; 11+ messages in thread
From: Fernando Pablo Lopez-Lezcano @ 2003-11-24 20:03 UTC (permalink / raw)
To: Thierry Vignaud; +Cc: Takashi Iwai, Lars Heineken, alsa-devel
> > > > > > I think we need a similar extension to support Mandrake,
> > > > > > after installation from the sources all modules in
> > > > > > modules.conf where gone, except the ones from alsa.. :-)
> > > > >
> > > > > I think the patch will fix mandrake too. I have the dubious
> > > > > honor of being able to claim ownership of the original bug :-(
> > > > > Anything having a /etc/redhat-release file but without having
> > > > > "Red Hat" inside would trigger the bug.
> > > > >
> > > > > The currently result with Mandrake would be to use the SuSE
> > > > > filter to try to erase the oss preferences from
> > > > > modules.conf. If the RedHat filter is better then another "if"
> > > > > could be added to the distro selection code to include
> > > > > Mandrake.
> > > >
> > > > untested:
> > >
> > > shall i apply this? let me know.
> >
> > I think it does no harm but does not change the end result
> > either. It creates a new option ("mandrake") but there is no code to
> > handle it so the if's should just execute the SuSE (default) code as
> > they do now.
> >
> > Options:
> > a) define 'distribution="redhat"' for the mandrake detection code
> > _if_ the oss options erasure for redhat works fine under mandrake
> > (mandrake users should test this).
> > b) add another handler for mandrake's modules.conf oss options
> > (should be written taking into account whatever mandrake uses to
> > configure sound so that the proper strings are removed from
> > modules.conf).
>
> so why not doing such as threat all distros that provide
> /etc/redhat-release the same way. i don't think there's any distro
> out that provide /etc/redhat-release for compatibility that would like
> to have users loose their module configuration:
With the patch I supplied no distros that user /etc/redhat-release will
lose their configuration (I hope, at least not due to the bug I
introduced a long time ago which is fixed by the patch). Distros that
are not RedHat or Fedora will execute the SuSE code path.
Your patch is fine, I would say. But it has an assumption I don't quite
like. I wrote "remove_sndconfig_block" (basing it on "remove_y2_block")
by looking at all the strings that the sndconfig utility was adding to
modules.conf (sndconfig was the way RedHat was doing sound configuration
quite a while ago, I think this has changed). I assume the same happened
when "remove_y2_block" was written (in this case with SuSE's yast2). I
don't know what sound configurators are being used by other releases
that use /etc/redhat-release (mandrake is one, probably others?), they
may be creating other strings in modules.conf that will not be removed
by "remove_sndconfig_block" so they may need custom "remove_xx_block"
functions that deal with what they add to modules.conf.
Just being picky :-)
-- Fernando
-------------------------------------------------------
This SF.net email is sponsored by: SF.net Giveback Program.
Does SourceForge.net help you be more productive? Does it
help you create better code? SHARE THE LOVE, and help us help
YOU! Click Here: http://sourceforge.net/donate/
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH] add support for mandrake in alsaconf
2003-11-24 20:03 ` Fernando Pablo Lopez-Lezcano
@ 2003-11-24 20:33 ` Thierry Vignaud
2003-11-25 12:16 ` Takashi Iwai
0 siblings, 1 reply; 11+ messages in thread
From: Thierry Vignaud @ 2003-11-24 20:33 UTC (permalink / raw)
To: Fernando Pablo Lopez-Lezcano; +Cc: Takashi Iwai, Lars Heineken, alsa-devel
Fernando Pablo Lopez-Lezcano <nando@ccrma.Stanford.EDU> writes:
> > > Options:
> > > a) define 'distribution="redhat"' for the mandrake detection
> > > code _if_ the oss options erasure for redhat works fine under
> > > mandrake (mandrake users should test this).
> > > b) add another handler for mandrake's modules.conf oss options
> > > (should be written taking into account whatever mandrake uses to
> > > configure sound so that the proper strings are removed from
> > > modules.conf).
> >
> > so why not doing such as threat all distros that provide
> > /etc/redhat-release the same way. i don't think there's any
> > distro out that provide /etc/redhat-release for compatibility that
> > would like to have users loose their module configuration:
>
> With the patch I supplied no distros that user /etc/redhat-release
> will lose their configuration (I hope, at least not due to the bug I
> introduced a long time ago which is fixed by the patch). Distros
> that are not RedHat or Fedora will execute the SuSE code path.
>
> Your patch is fine, I would say. But it has an assumption I don't
> quite like. I wrote "remove_sndconfig_block" (basing it on
> "remove_y2_block") by looking at all the strings that the sndconfig
> utility was adding to modules.conf (sndconfig was the way RedHat was
> doing sound configuration quite a while ago, I think this has
> changed).
as for mandrake, we do not rely on sndconfig (though we still provide
it for isa pnp sound card owners)
drakx (the installer) and draksound (the standalone soundconfig tool)
only write "sound-slot-X" aliases and "above XXX snd-pcm-oss" lines
for oss compatibility (if $module =~ /^snd-/) in /etc/modules.conf
> I assume the same happened when "remove_y2_block" was written (in
> this case with SuSE's yast2). I don't know what sound configurators
> are being used by other releases that use /etc/redhat-release
> (mandrake is one, probably others?),
mandrake does not use the sound alias nor any isa oss paremeters by
default but sndconfig users will manually do.
i guess someone that succesfully used sndconfig won't try alsaconf,
but we'd better be idiot-proof and not remove such modules
> they may be creating other strings in modules.conf that will not be
> removed by "remove_sndconfig_block" so they may need custom
> "remove_xx_block" functions that deal with what they add to
> modules.conf.
-------------------------------------------------------
This SF.net email is sponsored by: SF.net Giveback Program.
Does SourceForge.net help you be more productive? Does it
help you create better code? SHARE THE LOVE, and help us help
YOU! Click Here: http://sourceforge.net/donate/
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH] add support for mandrake in alsaconf
2003-11-24 20:33 ` Thierry Vignaud
@ 2003-11-25 12:16 ` Takashi Iwai
0 siblings, 0 replies; 11+ messages in thread
From: Takashi Iwai @ 2003-11-25 12:16 UTC (permalink / raw)
To: Thierry Vignaud; +Cc: Fernando Pablo Lopez-Lezcano, Lars Heineken, alsa-devel
At Mon, 24 Nov 2003 20:33:40 +0000,
Thierry Vignaud wrote:
>
> Fernando Pablo Lopez-Lezcano <nando@ccrma.Stanford.EDU> writes:
>
> > > > Options:
> > > > a) define 'distribution="redhat"' for the mandrake detection
> > > > code _if_ the oss options erasure for redhat works fine under
> > > > mandrake (mandrake users should test this).
> > > > b) add another handler for mandrake's modules.conf oss options
> > > > (should be written taking into account whatever mandrake uses to
> > > > configure sound so that the proper strings are removed from
> > > > modules.conf).
> > >
> > > so why not doing such as threat all distros that provide
> > > /etc/redhat-release the same way. i don't think there's any
> > > distro out that provide /etc/redhat-release for compatibility that
> > > would like to have users loose their module configuration:
> >
> > With the patch I supplied no distros that user /etc/redhat-release
> > will lose their configuration (I hope, at least not due to the bug I
> > introduced a long time ago which is fixed by the patch). Distros
> > that are not RedHat or Fedora will execute the SuSE code path.
> >
> > Your patch is fine, I would say. But it has an assumption I don't
> > quite like. I wrote "remove_sndconfig_block" (basing it on
> > "remove_y2_block") by looking at all the strings that the sndconfig
> > utility was adding to modules.conf (sndconfig was the way RedHat was
> > doing sound configuration quite a while ago, I think this has
> > changed).
>
> as for mandrake, we do not rely on sndconfig (though we still provide
> it for isa pnp sound card owners)
>
> drakx (the installer) and draksound (the standalone soundconfig tool)
> only write "sound-slot-X" aliases and "above XXX snd-pcm-oss" lines
> for oss compatibility (if $module =~ /^snd-/) in /etc/modules.conf
then remove_y2_block() would be enough.
i'll take Thierry's first patch. it will be in pre3 release.
Takashi
-------------------------------------------------------
This SF.net email is sponsored by: SF.net Giveback Program.
Does SourceForge.net help you be more productive? Does it
help you create better code? SHARE THE LOVE, and help us help
YOU! Click Here: http://sourceforge.net/donate/
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2003-11-25 12:16 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-11-21 23:40 fedora core alsaconf patch Fernando Pablo Lopez-Lezcano
2003-11-22 10:18 ` Lars Heineken
2003-11-24 2:39 ` Fernando Pablo Lopez-Lezcano
2003-11-24 14:59 ` [PATCH] add support for mandrake in alsaconf Thierry Vignaud
2003-11-24 15:15 ` Takashi Iwai
2003-11-24 18:58 ` Fernando Pablo Lopez-Lezcano
2003-11-24 19:42 ` Thierry Vignaud
2003-11-24 20:03 ` Fernando Pablo Lopez-Lezcano
2003-11-24 20:33 ` Thierry Vignaud
2003-11-25 12:16 ` Takashi Iwai
2003-11-24 11:45 ` fedora core alsaconf patch Takashi Iwai
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox