linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* ALSA make menuconfig Help description missing
@ 2005-05-17 12:35 Karel Kulhavy
  2005-05-17 13:49 ` Takashi Iwai
  0 siblings, 1 reply; 7+ messages in thread
From: Karel Kulhavy @ 2005-05-17 12:35 UTC (permalink / raw)
  To: linux-kernel

Hello

v2.6.11 make menuconfig -> Device Drivers -> Sound -> Advanced Linux
Sound Architecture and

v2.6.11 make menuconfig -> Device Drivers -> Sound -> Advanced Linux
Sound Architecture -> Advanced Linux Sound Architecture

are missing their help descriptions:

"There is no help available for this kernel option."

Therefore the user is unable to determine how to use this subsystem
at all.

CL<

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: ALSA make menuconfig Help description missing
  2005-05-17 12:35 ALSA make menuconfig Help description missing Karel Kulhavy
@ 2005-05-17 13:49 ` Takashi Iwai
  2005-05-17 14:16   ` Alexey Dobriyan
  2005-05-17 14:59   ` Karel Kulhavy
  0 siblings, 2 replies; 7+ messages in thread
From: Takashi Iwai @ 2005-05-17 13:49 UTC (permalink / raw)
  To: Karel Kulhavy; +Cc: linux-kernel

At Tue, 17 May 2005 14:35:49 +0200,
Karel Kulhavy wrote:
> 
> Hello
> 
> v2.6.11 make menuconfig -> Device Drivers -> Sound -> Advanced Linux
> Sound Architecture and
> 
> v2.6.11 make menuconfig -> Device Drivers -> Sound -> Advanced Linux
> Sound Architecture -> Advanced Linux Sound Architecture
> 
> are missing their help descriptions:
> 
> "There is no help available for this kernel option."
> 
> Therefore the user is unable to determine how to use this subsystem
> at all.

Something like below fixes the problem?


Takashi


--- linux/sound/Kconfig	22 Mar 2005 10:44:59 -0000	1.9
+++ linux/sound/Kconfig	17 May 2005 13:47:08 -0000
@@ -42,6 +42,8 @@
 config SND
 	tristate "Advanced Linux Sound Architecture"
 	depends on SOUND
+	help
+	  Say 'Y' or 'M' to enable ALSA (Advanced Linux Sound Architecture)
 
 source "sound/core/Kconfig"
 

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: ALSA make menuconfig Help description missing
  2005-05-17 13:49 ` Takashi Iwai
@ 2005-05-17 14:16   ` Alexey Dobriyan
  2005-05-17 14:32     ` Takashi Iwai
  2005-05-17 14:59   ` Karel Kulhavy
  1 sibling, 1 reply; 7+ messages in thread
From: Alexey Dobriyan @ 2005-05-17 14:16 UTC (permalink / raw)
  To: Takashi Iwai; +Cc: Karel Kulhavy, linux-kernel

On Tuesday 17 May 2005 17:49, Takashi Iwai wrote:
> At Tue, 17 May 2005 14:35:49 +0200,
> Karel Kulhavy wrote:
> > v2.6.11 make menuconfig -> Device Drivers -> Sound -> Advanced Linux
> > Sound Architecture and
> > 
> > v2.6.11 make menuconfig -> Device Drivers -> Sound -> Advanced Linux
> > Sound Architecture -> Advanced Linux Sound Architecture
> > 
> > are missing their help descriptions:
> > 
> > "There is no help available for this kernel option."
> > 
> > Therefore the user is unable to determine how to use this subsystem
> > at all.
> 
> Something like below fixes the problem?

> --- linux/sound/Kconfig
> +++ linux/sound/Kconfig
> @@ -42,6 +42,8 @@
>  config SND
>  	tristate "Advanced Linux Sound Architecture"
>  	depends on SOUND
> +	help
> +	  Say 'Y' or 'M' to enable ALSA (Advanced Linux Sound Architecture)

The only new info is that one can abbreviate "Advanced Linux Sound
Architecture" as "ALSA". ;-)

"Advanced Linux Sound Architecture" is already printed. What 'Y' and 'M' do is
also already printed at the top.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: ALSA make menuconfig Help description missing
  2005-05-17 14:16   ` Alexey Dobriyan
@ 2005-05-17 14:32     ` Takashi Iwai
  0 siblings, 0 replies; 7+ messages in thread
From: Takashi Iwai @ 2005-05-17 14:32 UTC (permalink / raw)
  To: Alexey Dobriyan; +Cc: Karel Kulhavy, linux-kernel

At Tue, 17 May 2005 18:16:51 +0400,
Alexey Dobriyan wrote:
> 
> On Tuesday 17 May 2005 17:49, Takashi Iwai wrote:
> > At Tue, 17 May 2005 14:35:49 +0200,
> > Karel Kulhavy wrote:
> > > v2.6.11 make menuconfig -> Device Drivers -> Sound -> Advanced Linux
> > > Sound Architecture and
> > > 
> > > v2.6.11 make menuconfig -> Device Drivers -> Sound -> Advanced Linux
> > > Sound Architecture -> Advanced Linux Sound Architecture
> > > 
> > > are missing their help descriptions:
> > > 
> > > "There is no help available for this kernel option."
> > > 
> > > Therefore the user is unable to determine how to use this subsystem
> > > at all.
> > 
> > Something like below fixes the problem?
> 
> > --- linux/sound/Kconfig
> > +++ linux/sound/Kconfig
> > @@ -42,6 +42,8 @@
> >  config SND
> >  	tristate "Advanced Linux Sound Architecture"
> >  	depends on SOUND
> > +	help
> > +	  Say 'Y' or 'M' to enable ALSA (Advanced Linux Sound Architecture)
> 
> The only new info is that one can abbreviate "Advanced Linux Sound
> Architecture" as "ALSA". ;-)

Yeah, that's pretty important information.  Someone may think ALSA as
"Alpaca and Llama Show Association" or "Australian Las Students'
Association" :)

> "Advanced Linux Sound Architecture" is already printed. What 'Y' and 'M' do is
> also already printed at the top.

I just wanted to confirm that adding a help text would solve the
problem.  A better description is appreciated, of course.


Takashi

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: ALSA make menuconfig Help description missing
  2005-05-17 13:49 ` Takashi Iwai
  2005-05-17 14:16   ` Alexey Dobriyan
@ 2005-05-17 14:59   ` Karel Kulhavy
  2005-05-17 19:30     ` Lee Revell
  1 sibling, 1 reply; 7+ messages in thread
From: Karel Kulhavy @ 2005-05-17 14:59 UTC (permalink / raw)
  To: Takashi Iwai; +Cc: linux-kernel

On Tue, May 17, 2005 at 03:49:02PM +0200, Takashi Iwai wrote:
> At Tue, 17 May 2005 14:35:49 +0200,
> Karel Kulhavy wrote:
> > 
> > Hello
> > 
> > v2.6.11 make menuconfig -> Device Drivers -> Sound -> Advanced Linux
> > Sound Architecture and
> > 
> > v2.6.11 make menuconfig -> Device Drivers -> Sound -> Advanced Linux
> > Sound Architecture -> Advanced Linux Sound Architecture
> > 
> > are missing their help descriptions:
> > 
> > "There is no help available for this kernel option."
> > 
> > Therefore the user is unable to determine how to use this subsystem
> > at all.
> 
> Something like below fixes the problem?

Yes, tried, fixes ;-)

However I suggest that a pointer to user documentation for ALSA be added
to the Help.

For example I have a problem when I run XMMS, Skype says something like
"can't open /dev/dsp" and don't know where to start.  The only thing I
know is that 1) I have ALSA turned on and 2) I want to know how to make
it accept more data streams from the programs and mix them together.

CL<
> 
> 
> Takashi
> 
> 
> --- linux/sound/Kconfig	22 Mar 2005 10:44:59 -0000	1.9
> +++ linux/sound/Kconfig	17 May 2005 13:47:08 -0000
> @@ -42,6 +42,8 @@
>  config SND
>  	tristate "Advanced Linux Sound Architecture"
>  	depends on SOUND
> +	help
> +	  Say 'Y' or 'M' to enable ALSA (Advanced Linux Sound Architecture)
>  
>  source "sound/core/Kconfig"
>  

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: ALSA make menuconfig Help description missing
  2005-05-17 14:59   ` Karel Kulhavy
@ 2005-05-17 19:30     ` Lee Revell
  2005-05-17 20:35       ` Valdis.Kletnieks
  0 siblings, 1 reply; 7+ messages in thread
From: Lee Revell @ 2005-05-17 19:30 UTC (permalink / raw)
  To: Karel Kulhavy; +Cc: Takashi Iwai, linux-kernel

On Tue, 2005-05-17 at 16:59 +0200, Karel Kulhavy wrote:
> Yes, tried, fixes ;-)
> 
> However I suggest that a pointer to user documentation for ALSA be added
> to the Help.
> 
> For example I have a problem when I run XMMS, Skype says something like
> "can't open /dev/dsp" and don't know where to start.  The only thing I
> know is that 1) I have ALSA turned on and 2) I want to know how to make
> it accept more data streams from the programs and mix them together.

There is no official user level documentation for dmix (which runs in
userspace anyway), because it was not intended to be configured by the
end user.  The current ALSA version, 1.0.9-rcX, uses dmix by default.

It's always a pain to get OSS apps to play nice with dmix, which is why
the real solution is to get proper ALSA support in Skype.

Lee




^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: ALSA make menuconfig Help description missing
  2005-05-17 19:30     ` Lee Revell
@ 2005-05-17 20:35       ` Valdis.Kletnieks
  0 siblings, 0 replies; 7+ messages in thread
From: Valdis.Kletnieks @ 2005-05-17 20:35 UTC (permalink / raw)
  To: Lee Revell; +Cc: Karel Kulhavy, Takashi Iwai, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 468 bytes --]

On Tue, 17 May 2005 15:30:16 EDT, Lee Revell said:

> There is no official user level documentation for dmix (which runs in
> userspace anyway), because it was not intended to be configured by the
> end user.  The current ALSA version, 1.0.9-rcX, uses dmix by default.
> 
> It's always a pain to get OSS apps to play nice with dmix, which is why
> the real solution is to get proper ALSA support in Skype.

Blech. Explains why I can't find the kernel piece for it. ;)

[-- Attachment #2: Type: application/pgp-signature, Size: 226 bytes --]

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2005-05-17 20:35 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-05-17 12:35 ALSA make menuconfig Help description missing Karel Kulhavy
2005-05-17 13:49 ` Takashi Iwai
2005-05-17 14:16   ` Alexey Dobriyan
2005-05-17 14:32     ` Takashi Iwai
2005-05-17 14:59   ` Karel Kulhavy
2005-05-17 19:30     ` Lee Revell
2005-05-17 20:35       ` Valdis.Kletnieks

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).