All of lore.kernel.org
 help / color / mirror / Atom feed
* usx2y dependencies
@ 2004-01-24  0:23 Martin Langer
  2004-01-26 10:20 ` Takashi Iwai
  0 siblings, 1 reply; 5+ messages in thread
From: Martin Langer @ 2004-01-24  0:23 UTC (permalink / raw)
  To: alsa-devel; +Cc: annabellesgarden


Hi,

usx2y build by "./configure --with-cards=usb-usx2y" has a dependency problem:

depmod: *** Unresolved symbols in
/lib/modules/2.4.23/kernel/sound/usb/usx2y/snd-usb-usx2y.o
depmod:         snd_usbmidi_disconnect_Rc1a56322
depmod:         snd_hack_usb_set_interface_R5b6905b8
depmod:         snd_usb_create_midi_interface_R5a5eff3a

./configure --with-cards=usb-usx2y,usb-audio fix this problem, but OTOH it
looks fine in /alsa-driver/utils/Modules.dep -- usx2y depends there on 
snd-usb-audio and that seems to be ok.

Any hints?

martin


-- 
The only nice thing about spam is that it doesn't ring.


-------------------------------------------------------
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn

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

* Re: usx2y dependencies
  2004-01-24  0:23 usx2y dependencies Martin Langer
@ 2004-01-26 10:20 ` Takashi Iwai
  2004-01-26 23:07   ` Martin Langer
  0 siblings, 1 reply; 5+ messages in thread
From: Takashi Iwai @ 2004-01-26 10:20 UTC (permalink / raw)
  To: Martin Langer; +Cc: alsa-devel, annabellesgarden

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

At Sat, 24 Jan 2004 01:23:28 +0100,
Martin Langer wrote:
> 
> 
> Hi,
> 
> usx2y build by "./configure --with-cards=usb-usx2y" has a dependency problem:
> 
> depmod: *** Unresolved symbols in
> /lib/modules/2.4.23/kernel/sound/usb/usx2y/snd-usb-usx2y.o
> depmod:         snd_usbmidi_disconnect_Rc1a56322
> depmod:         snd_hack_usb_set_interface_R5b6905b8
> depmod:         snd_usb_create_midi_interface_R5a5eff3a
> 
> ./configure --with-cards=usb-usx2y,usb-audio fix this problem, but OTOH it
> looks fine in /alsa-driver/utils/Modules.dep -- usx2y depends there on 
> snd-usb-audio and that seems to be ok.
> 
> Any hints?

try the attached patch.


Takashi

[-- Attachment #2: Type: text/plain, Size: 554 bytes --]

Index: alsa-driver/usb/Makefile
===================================================================
RCS file: /suse/tiwai/cvs/alsa/alsa-driver/usb/Makefile,v
retrieving revision 1.13
diff -u -r1.13 Makefile
--- alsa-driver/usb/Makefile	25 Nov 2003 11:13:35 -0000	1.13
+++ alsa-driver/usb/Makefile	26 Jan 2004 10:19:35 -0000
@@ -10,6 +10,9 @@
 # for compatibility
 extra-snd-usb-audio-objs := usbcompat.o
 
+# usx2y depends on usb-audio
+obj-$(CONFIG_SND_USB_USX2Y) += snd-usb-audio.o
+
 obj-$(CONFIG_SND) += usx2y/
 
 export-objs := usbaudio.o usbmidi.o

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

* Re: usx2y dependencies
  2004-01-26 10:20 ` Takashi Iwai
@ 2004-01-26 23:07   ` Martin Langer
  2004-02-02 21:08     ` Martin Langer
  0 siblings, 1 reply; 5+ messages in thread
From: Martin Langer @ 2004-01-26 23:07 UTC (permalink / raw)
  To: Takashi Iwai; +Cc: alsa-devel, annabellesgarden

On Mon, Jan 26, 2004 at 11:20:12AM +0100, Takashi Iwai wrote:
> At Sat, 24 Jan 2004 01:23:28 +0100,
> Martin Langer wrote:
> > 
> > usx2y build by "./configure --with-cards=usb-usx2y" has a dependency problem:
> > 
> > depmod: *** Unresolved symbols in
> > /lib/modules/2.4.23/kernel/sound/usb/usx2y/snd-usb-usx2y.o
> > depmod:         snd_usbmidi_disconnect_Rc1a56322
> > depmod:         snd_hack_usb_set_interface_R5b6905b8
> > depmod:         snd_usb_create_midi_interface_R5a5eff3a
> > 
> > ./configure --with-cards=usb-usx2y,usb-audio fix this problem, but OTOH it
> > looks fine in /alsa-driver/utils/Modules.dep -- usx2y depends there on 
> > snd-usb-audio and that seems to be ok.
> > 
> > Any hints?
> 
> try the attached patch.
> 

It's perfect :) Please commit it.

martin


-------------------------------------------------------
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn

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

* Re: usx2y dependencies
  2004-01-26 23:07   ` Martin Langer
@ 2004-02-02 21:08     ` Martin Langer
  2004-02-03 15:24       ` Takashi Iwai
  0 siblings, 1 reply; 5+ messages in thread
From: Martin Langer @ 2004-02-02 21:08 UTC (permalink / raw)
  To: alsa-devel; +Cc: Takashi Iwai, annabellesgarden

On Tue, Jan 27, 2004 at 12:07:43AM +0100, Martin Langer wrote:
> On Mon, Jan 26, 2004 at 11:20:12AM +0100, Takashi Iwai wrote:
> > At Sat, 24 Jan 2004 01:23:28 +0100,
> > Martin Langer wrote:
> > > 
> > > usx2y build by "./configure --with-cards=usb-usx2y" has a dependency problem:
> > > 
> > 
> > try the attached patch.
> > 
> 
> It's perfect :) Please commit it.
> 

I have an improvement. Because I haven't checked MIDI dependencies before :-(
But this patch enables the MIDI stuff now.

martin


Index: alsa-driver/acore/seq/Makefile
===================================================================
RCS file: /cvsroot/alsa/alsa-driver/acore/seq/Makefile,v
retrieving revision 1.14
diff -u -r1.14 Makefile
--- alsa-driver/acore/seq/Makefile	11 Nov 2003 13:12:16 -0000	1.14
+++ alsa-driver/acore/seq/Makefile	2 Feb 2004 20:58:00 -0000
@@ -12,6 +12,7 @@
 obj-$(CONFIG_SND_AU8810) += snd-seq-midi.o snd-seq.o snd-seq-device.o snd-seq-midi-event.o
 obj-$(CONFIG_SND_AU8820) += snd-seq-midi.o snd-seq.o snd-seq-device.o snd-seq-midi-event.o
 obj-$(CONFIG_SND_AU8830) += snd-seq-midi.o snd-seq.o snd-seq-device.o snd-seq-midi-event.o
+obj-$(CONFIG_SND_USB_USX2Y) += snd-seq-midi.o snd-seq.o snd-seq-device.o snd-seq-midi-event.o
 
 export-objs  := seq_device.o seq.o seq_instr.o seq_midi_emul.o \
 		seq_midi_event.o seq_virmidi.o


-------------------------------------------------------
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn

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

* Re: usx2y dependencies
  2004-02-02 21:08     ` Martin Langer
@ 2004-02-03 15:24       ` Takashi Iwai
  0 siblings, 0 replies; 5+ messages in thread
From: Takashi Iwai @ 2004-02-03 15:24 UTC (permalink / raw)
  To: Martin Langer; +Cc: alsa-devel, annabellesgarden

At Mon, 2 Feb 2004 22:08:53 +0100,
Martin Langer wrote:
> 
> On Tue, Jan 27, 2004 at 12:07:43AM +0100, Martin Langer wrote:
> > On Mon, Jan 26, 2004 at 11:20:12AM +0100, Takashi Iwai wrote:
> > > At Sat, 24 Jan 2004 01:23:28 +0100,
> > > Martin Langer wrote:
> > > > 
> > > > usx2y build by "./configure --with-cards=usb-usx2y" has a dependency problem:
> > > > 
> > > 
> > > try the attached patch.
> > > 
> > 
> > It's perfect :) Please commit it.
> > 
> 
> I have an improvement. Because I haven't checked MIDI dependencies before :-(
> But this patch enables the MIDI stuff now.

thanks, now applied to cvs.


Takashi


-------------------------------------------------------
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn

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

end of thread, other threads:[~2004-02-03 15:24 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-01-24  0:23 usx2y dependencies Martin Langer
2004-01-26 10:20 ` Takashi Iwai
2004-01-26 23:07   ` Martin Langer
2004-02-02 21:08     ` Martin Langer
2004-02-03 15:24       ` Takashi Iwai

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.