Re: [Linux-usb-users] high-speed usb doesn't work

2007-12-04 Thread David Griffith
On Mon, 3 Dec 2007, Stephen J. Gowdy wrote: DId you read the FAQ about this issue? Yes. None of the solutions suggested worked. The output of lspci -v|grep HCI is the following: 00:02.0 USB Controller: nVidia Corporation nForce2 USB Controller (rev a4) (prog-if 10 [OHCI]) 00:02.1 USB

Re: [Linux-usb-users] Self modifying ms device

2007-12-04 Thread Alan Stern
On Mon, 3 Dec 2007, Brad Schick wrote: Looking for some input on the following problem that I realized isn't really usb specific: My goal is to display an html page that resides on a usb mass-storage device and changes over time. The mass-storage device will be read-only from the host OS,

Re: [Linux-usb-users] high-speed usb doesn't work

2007-12-04 Thread Alan Stern
On Mon, 3 Dec 2007, David Griffith wrote: On Mon, 3 Dec 2007, Alan Stern wrote: These are low-level hardware errors. Maybe in the device, maybe caused by the USB cable, maybe in your EHCI controller. Some tests to try: Does the device work at high speed in a different computer?

[Linux-usb-users] [PATCH] Edgeport USB Serial Converter: convert es_sem to mutex

2007-12-04 Thread Matthias Kaehlcke
Edgeport USB Serial Converter: convert semaphore es_sem to the mutex API Signed-off-by: Matthias Kaehlcke [EMAIL PROTECTED] -- diff --git a/drivers/usb/serial/io_ti.c b/drivers/usb/serial/io_ti.c index b867090..f7fdf1c 100644 --- a/drivers/usb/serial/io_ti.c +++ b/drivers/usb/serial/io_ti.c @@

Re: [Linux-usb-users] Self modifying ms device

2007-12-04 Thread Matthew Dharm
You might be able to make this work if you make your device indicate that it has removeable media. Then, whenever you post an update, you will need to force a media-change indication. That will probably work for Windows, and for Linux will only work for devices which are accessed without

Re: [Linux-usb-users] Self modifying ms device

2007-12-04 Thread Rogier Wolff
On Tue, Dec 04, 2007 at 10:21:58AM -0500, Alan Stern wrote: A less clumsy approach might be to avoid being a mass-storage device. But I don't know what other protocol would be more suitable. Does PTP support dynamic updating? Yes. You could send an objectadded event. Roger. --

Re: [Linux-usb-users] (no subject)

2007-12-04 Thread Артем
[EMAIL PROTECTED] реклама Высокоскоростные Качественные бЧ86З-8Ч - SF.Net email is sponsored by: The Future of Linux Business White Paper from Novell. From the desktop to the data center, Linux is going mainstream. Let it

[Linux-usb-users] [PATCH] USB testing driver: convert dev-sem to mutex

2007-12-04 Thread Matthias Kaehlcke
USB testing driver: convert semaphore dev-sem to the mutex API Signed-off-by: Matthias Kaehlcke [EMAIL PROTECTED] -- diff --git a/drivers/usb/misc/usbtest.c b/drivers/usb/misc/usbtest.c index ea31621..57260ab 100644 --- a/drivers/usb/misc/usbtest.c +++ b/drivers/usb/misc/usbtest.c @@ -6,6 +6,7

[Linux-usb-users] USB bus unique ID

2007-12-04 Thread Alessio Sangalli
Hi, do you know a way to read a unique ID for a USB bus? I would like to assign a given USB port to some application; I now read /sys/bus/usb/devices/usb* but it seems the bus* links can be assigned to different entities from a boot to another. Is there some kind of unique bus ID inside

Re: [Linux-usb-users] [PATCH] USB testing driver: convert dev-sem to mutex

2007-12-04 Thread Daniel Walker
On Tue, 2007-12-04 at 17:55 +0100, Matthias Kaehlcke wrote: @@ -1990,7 +1991,7 @@ static void usbtest_disconnect (struct usb_interface *intf) { struct usbtest_dev *dev = usb_get_intfdata (intf); - down (dev-sem); + mutex_lock(dev-lock);

Re: [Linux-usb-users] USB bus unique ID

2007-12-04 Thread Alan Stern
On Tue, 4 Dec 2007, Alessio Sangalli wrote: Hi, do you know a way to read a unique ID for a USB bus? I would like to assign a given USB port to some application; I now read /sys/bus/usb/devices/usb* but it seems the bus* links can be assigned to different entities from a boot to another.

[Linux-usb-users] Detaching USB keyboard from Linux console

2007-12-04 Thread Alessio Sangalli
Hi, I would like to do the following: attach a USB keyboard to a Linux system but NOT having the Linux console to get input from it. I already configured xorg to use a specific device (PS/2) through evdev driver, but doing so, what I type on the USB keyoard goes to the (non-graphical) console. As

[Linux-usb-users] Linux 2.4.29 URB timeout question

2007-12-04 Thread B Seeger
Howdy, I've looked through the archives and couldn't find an answer to my questions, so I have an embedded system where I use a hotplug script to automount a USB stick. Sometimes it fails and the error I see is (via dmesg): hub.c: new USB device 00:0e.0-1, assigned address 2 scsi0 :

Re: [Linux-usb-users] Linux 2.4.29 URB timeout question

2007-12-04 Thread Alan Stern
On Tue, 4 Dec 2007, B Seeger wrote: Howdy, I've looked through the archives and couldn't find an answer to my questions, so I have an embedded system where I use a hotplug script to automount a USB stick. Sometimes it fails and the error I see is (via dmesg): hub.c: new USB

Re: [Linux-usb-users] [PATCH] USB testing driver: convert dev-sem to mutex

2007-12-04 Thread Matthias Kaehlcke
El Tue, Dec 04, 2007 at 11:09:02AM -0800 Daniel Walker ha dit: On Tue, 2007-12-04 at 17:55 +0100, Matthias Kaehlcke wrote: @@ -1990,7 +1991,7 @@ static void usbtest_disconnect (struct usb_interface *intf) { struct usbtest_dev *dev = usb_get_intfdata (intf); -

Re: [Linux-usb-users] Self modifying ms device

2007-12-04 Thread Brad Schick
Rogier Wolff wrote: On Tue, Dec 04, 2007 at 10:21:58AM -0500, Alan Stern wrote: A less clumsy approach might be to avoid being a mass-storage device. But I don't know what other protocol would be more suitable. Does PTP support dynamic updating? Yes. You could send an

Re: [Linux-usb-users] Self modifying ms device

2007-12-04 Thread Brad Schick
On Dec 4, 2007 2:37 PM, Brad Schick [EMAIL PROTECTED] wrote: Anyone feel like working on a http over usb proposal for the future? Seems like it could be a fairly straight forward CDC subclass. On second thought CDC might not be appropriate since the class should be applicable for a wider range

Re: [Linux-usb-users] high-speed usb doesn't work

2007-12-04 Thread David Griffith
On Tue, 4 Dec 2007, Alan Stern wrote: The output of lspci -v|grep HCI is the following: 00:02.0 USB Controller: nVidia Corporation nForce2 USB Controller (rev a4) (prog-if 10 [OHCI]) 00:02.1 USB Controller: nVidia Corporation nForce2 USB Controller (rev a4) (prog-if 10 [OHCI])