diff options
Diffstat (limited to 'linux/drivers')
-rw-r--r-- | linux/drivers/media/dvb/bt8xx/Kconfig | 13 | ||||
-rw-r--r-- | linux/drivers/media/dvb/bt8xx/Makefile | 5 |
2 files changed, 18 insertions, 0 deletions
diff --git a/linux/drivers/media/dvb/bt8xx/Kconfig b/linux/drivers/media/dvb/bt8xx/Kconfig new file mode 100644 index 000000000..ec53a99fb --- /dev/null +++ b/linux/drivers/media/dvb/bt8xx/Kconfig @@ -0,0 +1,13 @@ +config DVB_BT8XX + tristate "Bt8xx based DVB PCI cards" + depends on DVB_CORE && USB + help + Support for PCI cards based on the Bt8xx PCI bridge. Examples are + The Nebula cards and the Pinnacle PCTV cards. + + Since these cards have no MPEG decoder onboard, they transmit + only compressed MPEG data over the PCI bus, so you need + an external software decoder to watch TV on your computer. + + Say Y if you own such a device and want to use it. + diff --git a/linux/drivers/media/dvb/bt8xx/Makefile b/linux/drivers/media/dvb/bt8xx/Makefile new file mode 100644 index 000000000..8a933dc6a --- /dev/null +++ b/linux/drivers/media/dvb/bt8xx/Makefile @@ -0,0 +1,5 @@ + +obj-$(CONFIG_DVB_BT8XX) += bt878.o dvb-bt8xx.o + +EXTRA_CFLAGS = -Idrivers/media/dvb/dvb-core/ + |