b4aba24186
testing of the -tip tree found the following build failures on 2.6.26-rc3: drivers/built-in.o: In function `ttusb_dec_disconnect': ttusb_dec.c:(.text+0xa2c95): undefined reference to `input_unregister_device' drivers/built-in.o: In function `dvb_usb_read_remote_control': dvb-usb-remote.c:(.text+0xa6a94): undefined reference to `input_event' with this config: http://redhat.com/~mingo/misc/config-Tue_May_20_03_48_57_CEST_2008.bad these are due to the media/dvb/usb layer having dependencies on INPUT functionality, without having that spelled out in the Kconfig file. this patch makes that dependency explicit (for the drivers affected), which solves the build error. Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
23 lines
978 B
Text
23 lines
978 B
Text
config DVB_TTUSB_DEC
|
|
tristate "Technotrend/Hauppauge USB DEC devices"
|
|
depends on DVB_CORE && USB && INPUT
|
|
depends on HOTPLUG # due to FW_LOADER
|
|
select FW_LOADER
|
|
select CRC32
|
|
help
|
|
Support for external USB adapters designed by Technotrend and
|
|
produced by Hauppauge, shipped under the brand name 'DEC2000-t'
|
|
and 'DEC3000-s'.
|
|
|
|
Even if these devices have a MPEG decoder built in, they transmit
|
|
only compressed MPEG data over the USB bus, so you need
|
|
an external software decoder to watch TV on your computer.
|
|
|
|
This driver needs external firmware. Please use the commands
|
|
"<kerneldir>/Documentation/dvb/get_dvb_firmware dec2000t",
|
|
"<kerneldir>/Documentation/dvb/get_dvb_firmware dec2540t",
|
|
"<kerneldir>/Documentation/dvb/get_dvb_firmware dec3000s",
|
|
download/extract them, and then copy them to /usr/lib/hotplug/firmware
|
|
or /lib/firmware (depending on configuration of firmware hotplug).
|
|
|
|
Say Y if you own such a device and want to use it.
|