diff options
author | Michael Krufky <mkrufky@linuxtv.org> | 2006-06-24 20:05:12 -0400 |
---|---|---|
committer | Michael Krufky <mkrufky@linuxtv.org> | 2006-06-24 20:05:12 -0400 |
commit | 3de3a189c2592763ae7fd5acd20d0a137090c2f5 (patch) | |
tree | 1bd5f8ae259975c01572e9b0d89cc8391831850f | |
parent | 0a5482d16ed504ebb0bae176713b45d023810514 (diff) | |
download | mediapointer-dvb-s2-3de3a189c2592763ae7fd5acd20d0a137090c2f5.tar.gz mediapointer-dvb-s2-3de3a189c2592763ae7fd5acd20d0a137090c2f5.tar.bz2 |
make VIDEO_CX88_BLACKBIRD a separate build option
From: Michael Krufky <mkrufky@linuxtv.org>
This patch creates a new Kconfig menu option, entitled,
"Blackbird MPEG encoder support (cx2388x + cx23416)"
so that the cx88-blackbird mpeg encoder module can be
chosen separately.
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
-rw-r--r-- | linux/drivers/media/video/cx88/Kconfig | 15 | ||||
-rw-r--r-- | linux/drivers/media/video/cx88/Makefile | 5 | ||||
-rw-r--r-- | v4l/versions.txt | 1 |
3 files changed, 17 insertions, 4 deletions
diff --git a/linux/drivers/media/video/cx88/Kconfig b/linux/drivers/media/video/cx88/Kconfig index 91e1c481a..80e23ee98 100644 --- a/linux/drivers/media/video/cx88/Kconfig +++ b/linux/drivers/media/video/cx88/Kconfig @@ -11,7 +11,6 @@ config VIDEO_CX88 select VIDEO_BUF select VIDEO_TUNER select VIDEO_TVEEPROM - select VIDEO_CX2341X select VIDEO_IR ---help--- This is a video4linux driver for Conexant 2388x based @@ -36,13 +35,25 @@ config VIDEO_CX88_ALSA To compile this driver as a module, choose M here: the module will be called cx88-alsa. +config VIDEO_CX88_BLACKBIRD + tristate "Blackbird MPEG encoder support (cx2388x + cx23416)" + depends on VIDEO_CX88 + select VIDEO_CX2341X + ---help--- + This adds support for MPEG encoder cards based on the + Blackbird reference design, using the Conexant 2388x + and 23416 chips. + + To compile this driver as a module, choose M here: the + module will be called cx88-blackbird. + config VIDEO_CX88_DVB tristate "DVB/ATSC Support for cx2388x based TV cards" depends on VIDEO_CX88 && DVB_CORE select VIDEO_BUF_DVB ---help--- This adds support for DVB/ATSC cards based on the - Connexant 2388x chip. + Conexant 2388x chip. To compile this driver as a module, choose M here: the module will be called cx88-dvb. diff --git a/linux/drivers/media/video/cx88/Makefile b/linux/drivers/media/video/cx88/Makefile index 0dcd09b9b..352b919f3 100644 --- a/linux/drivers/media/video/cx88/Makefile +++ b/linux/drivers/media/video/cx88/Makefile @@ -3,9 +3,10 @@ cx88xx-objs := cx88-cards.o cx88-core.o cx88-i2c.o cx88-tvaudio.o \ cx8800-objs := cx88-video.o cx88-vbi.o cx8802-objs := cx88-mpeg.o -obj-$(CONFIG_VIDEO_CX88) += cx88xx.o cx8800.o cx8802.o cx88-blackbird.o -obj-$(CONFIG_VIDEO_CX88_DVB) += cx88-dvb.o +obj-$(CONFIG_VIDEO_CX88) += cx88xx.o cx8800.o cx8802.o obj-$(CONFIG_VIDEO_CX88_ALSA) += cx88-alsa.o +obj-$(CONFIG_VIDEO_CX88_BLACKBIRD) += cx88-blackbird.o +obj-$(CONFIG_VIDEO_CX88_DVB) += cx88-dvb.o obj-$(CONFIG_VIDEO_CX88_VP3054) += cx88-vp3054-i2c.o EXTRA_CFLAGS += -Idrivers/media/video diff --git a/v4l/versions.txt b/v4l/versions.txt index 706439959..2c74da43f 100644 --- a/v4l/versions.txt +++ b/v4l/versions.txt @@ -105,6 +105,7 @@ VIDEO_HEXIUM_GEMINI VIDEO_CX88_VP3054 VIDEO_CX88 VIDEO_CX88_ALSA +VIDEO_CX88_BLACKBIRD VIDEO_CX88_DVB VIDEO_CX88_DVB_ALL_FRONTENDS VIDEO_CX88_DVB_MT352 |