Re: [Qemu-devel] QEMU static build

2008-01-18 Thread Salil Bijur
On Jan 16, 2008 9:15 PM, Thiemo Seufer <[EMAIL PROTECTED]> wrote: > Salil Bijur wrote: > [snip] > > > > But there are further linker errors with respect to libasound (for > > > > ALSA) and libSDL. This can be solved by adding -ldl, -lartsc, etc. for > > &g

Re: [Qemu-devel] QEMU static build

2008-01-16 Thread Salil Bijur
On Jan 16, 2008 6:50 PM, Christian Ehrhardt <[EMAIL PROTECTED]> wrote: > > Salil Bijur wrote: > > On Jan 16, 2008 5:59 PM, Christian Ehrhardt <[EMAIL PROTECTED]> wrote: > >> Salil Bijur wrote: > >>> On Jan 16, 2008 4:48 PM, Mulyadi

Re: [Qemu-devel] QEMU static build

2008-01-16 Thread Salil Bijur
On Jan 16, 2008 5:59 PM, Christian Ehrhardt <[EMAIL PROTECTED]> wrote: > > Salil Bijur wrote: > > On Jan 16, 2008 4:48 PM, Mulyadi Santosa <[EMAIL PROTECTED]> wrote: > >> Hi > >> > >> > >> On Jan 16, 2008 5:20 PM, Salil Bijur <[EMAIL

Re: [Qemu-devel] QEMU static build

2008-01-16 Thread Salil Bijur
On Jan 16, 2008 4:48 PM, Mulyadi Santosa <[EMAIL PROTECTED]> wrote: > Hi > > > On Jan 16, 2008 5:20 PM, Salil Bijur <[EMAIL PROTECTED]> wrote: > > Hello, > > > > I've been trying to build QEMU statically by first configuring it > > using the --

[Qemu-devel] QEMU static build

2008-01-16 Thread Salil Bijur
Hello, I've been trying to build QEMU statically by first configuring it using the --static option. The compiling gives me the same linker errors as mentioned here: http://www.mail-archive.com/qemu-devel@nongnu.org/msg10721.html I know this has been asked before but it hasn't been followed up. An

Re: [Qemu-devel] USB Asynchronous I/O

2007-11-18 Thread Salil Bijur
On Nov 15, 2007 5:46 PM, Arnon Gilboa <[EMAIL PROTECTED]> wrote: > I believe you can do it similar to the way I did for isochronous > transfers in usb-linux.c. > Remember that using SUBMITURB and REAPURBNDELAY ioctls, you need to add > another signal and signal handler for the async bulk, and there

[Qemu-devel] USB Asynchronous I/O

2007-11-14 Thread Salil Bijur
Hello, I've been testing Bluetooth-USB in QEMU for an arm-based processor with a Linux guest. When a bluetooth dongle is added, there is a continuous sending of bulk and interrupt packets synchronously (using the USBDEVFS_BULK ioctl) making qemu extremely slow and unusable. I wanted to know if it

Re: [Qemu-devel] No cancel callback for usb-ohci

2007-11-08 Thread Salil Bijur
ancel_io, s); There doesn't seem to be a similar cancel_cb callback for ohci. An empty stub function prevents this crash, but should it be doing more stuff like the msd one does? Salil > > > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Be

[Qemu-devel] No cancel callback for usb-ohci

2007-11-07 Thread Salil Bijur
Hello, There is a call to the function usb_cancel_packet in hw/usb-ohci.c. However, there is no cancel_cb callback registered for the ohci->usb_packet resulting in a segmentation fault. Are there any plans to implement this cancel callback? Thanks, Salil