Bug 10219

Summary: Kernel don't handle my USB astronomy camera
Product: Mageia Reporter: jb butet <ashashiwa>
Component: RPM PackagesAssignee: Thomas Backlund <tmb>
Status: RESOLVED OLD QA Contact:
Severity: normal    
Priority: Normal CC: mageia
Version: 3   
Target Milestone: ---   
Hardware: All   
OS: Linux   
Whiteboard:
Source RPM: kernel CVE:
Status comment:

Description jb butet 2013-05-22 12:21:51 CEST
Description of problem:
I have a ImagingSource DBK 21AU04 AS USb camera.
lsusb gives : Bus 007 Device 002: ID 199e:8101 The Imaging Source Europe GmbH DFx 21BU04 Camera

it's driver is UVCDRIVER. But this one have only "8102" camera in database. So I need to recompile every kernel with a little change.

The source : line 2361 of drivers/media/video/uvc/uvc_driver.c
	/* The Imaging Source USB CCD cameras */
	{ .match_flags		= USB_DEVICE_ID_MATCH_DEVICE
				| USB_DEVICE_ID_MATCH_INT_INFO,
	  .idVendor		= 0x199e,
	  .idProduct		= 0x8102,
	  .bInterfaceClass	= USB_CLASS_VENDOR_SPEC,
	  .bInterfaceSubClass	= 1,
	  .bInterfaceProtocol	= 0 },

The add juste after : 
        /* Imaging Source DFx 21BU04 */
	{ .match_flags = USB_DEVICE_ID_MATCH_DEVICE
		| USB_DEVICE_ID_MATCH_INT_INFO,
		.idVendor = 0x199e,
		.idProduct = 0x8101,
		.bInterfaceClass = USB_CLASS_VENDOR_SPEC,
		.bInterfaceSubClass = 1,
		.bInterfaceProtocol = 0,
		.driver_info = UVC_QUIRK_PROBE_DEF
	},


lspcidrake -v
before patching : 
unknown        : The Imaging Source Europe GmbH|DBx 21AU04.AS (vendor:199e device:8101)

After patching : 
uvcvideo        : The Imaging Source Europe GmbH|DBx 21AU04.AS (vendor:199e device:8101)





Reproducible: 

Steps to Reproduce:
Sander Lepik 2013-05-22 13:22:52 CEST

CC: (none) => sander.lepik
Assignee: bugsquad => tmb

Manuel Hiebel 2013-05-24 23:22:03 CEST

Source RPM: (none) => kernel

Comment 1 Marja Van Waes 2015-03-31 16:02:43 CEST
Mageia 3 changed to end-of-life (EOL) status 4 months ago.
http://blog.mageia.org/en/2014/11/26/lets-say-goodbye-to-mageia-3/ 

Mageia 3 is no longer maintained, which means that it will not receive any further security or bug fix updates. As a result we are closing this bug.

If you can reproduce this bug against a currently maintained version of Mageia
please feel free to click on "Version" change it against that version of Mageia
and reopen this bug.

Thank you for reporting this bug and we are sorry it could not be fixed.

--
The Mageia Bugsquad

Status: NEW => RESOLVED
Resolution: (none) => OLD