#!/bin/sh echo creating symlinks ln -s ../dvb-kernel/linux/drivers/media/dvb/frontends/dvb-pll.c dvb-pll.c ln -s ../dvb-kernel/linux/drivers/media/dvb/frontends/dvb-pll.h dvb-pll.h ln -s ../dvb-kernel/linux/drivers/media/dvb/frontends/mt352.c mt352.c ln -s ../dvb-kernel/linux/drivers/media/dvb/frontends/mt352.h mt352.h ln -s ../dvb-kernel/linux/drivers/media/dvb/frontends/mt352_priv.h mt352_priv.h ln -s ../dvb-kernel/linux/drivers/media/dvb/frontends/cx22702.c cx22702.c ln -s ../dvb-kernel/linux/drivers/media/dvb/frontends/cx22702.h cx22702.h ln -s ../dvb-kernel/linux/drivers/media/dvb/frontends/lgdt330x.c lgdt330x.c ln -s ../dvb-kernel/linux/drivers/media/dvb/frontends/lgdt330x.h lgdt330x.h ln -s ../dvb-kernel/linux/drivers/media/dvb/frontends/lgdt330x_priv.h lgdt330x_priv.h ln -s ../dvb-kernel/linux/drivers/media/dvb/frontends/or51132.c or51132.c ln -s ../dvb-kernel/linux/drivers/media/dvb/frontends/or51132.h or51132.h ln -s ../dvb-kernel/linux/drivers/media/dvb/frontends/tda1004x.c tda1004x.c ln -s ../dvb-kernel/linux/drivers/media/dvb/frontends/tda1004x.h tda1004x.h patch -p1 <<'DIFF' diff -upr video4linux.orig/Makefile video4linux/Makefile --- video4linux.orig/Makefile 2005-07-29 21:41:18.000000000 +0000 +++ video4linux/Makefile 2005-07-29 21:41:59.000000000 +0000 @@ -39,8 +39,8 @@ obj-$(CONFIG_VIDEO_IR) += ir-common.o obj-$(CONFIG_VIDEO_TUNER) += tuner.o tda9887.o obj-$(CONFIG_VIDEO_TVAUDIO) += msp3400.o tvaudio.o tvmixer.o -obj-$(CONFIG_VIDEO_CX88_DVB) += video-buf-dvb.o cx88-dvb.o -obj-$(CONFIG_VIDEO_SAA7134_DVB) += video-buf-dvb.o saa7134-dvb.o +obj-$(CONFIG_VIDEO_CX88_DVB) += video-buf-dvb.o cx88-dvb.o cx22702.o dvb-pll.o or51132.o lgdt330x.o mt352.o +obj-$(CONFIG_VIDEO_SAA7134_DVB) += video-buf-dvb.o saa7134-dvb.o mt352.o tda1004x.o # 2.6-only stuff ifeq ($(VERSION).$(PATCHLEVEL),2.6) @@ -54,6 +54,7 @@ ifeq ($(VERSION).$(PATCHLEVEL),2.6) endif # for DVB +EXTRA_CFLAGS += -DDVB_CVS=1 EXTRA_CFLAGS += -I$(srctree)/drivers/media/dvb/dvb-core/ EXTRA_CFLAGS += -I$(srctree)/drivers/media/dvb/frontends/ ifeq ($(CONFIG_VIDEO_CX88_DVB),m) @@ -125,6 +126,7 @@ ifeq ($(inst-m),) endif inst_common := ir-common.ko +inst_frontends := cx22702.ko dvb-pll.ko mt352.ko lgdt330x.ko or51132.ko tda1004x.ko inst_video := btcx-risc.ko bttv.ko tda9887.ko tuner.ko tvaudio.ko tveeprom.ko inst_video += tvmixer.ko v4l1-compat.ko v4l2-common.ko inst_video += video-buf.ko video-buf-dvb.ko @@ -151,6 +153,9 @@ install:: rminstall -install -d $(KDIR26)/common -install -m 644 -c $(inst_common) $(KDIR26)/common + -install -d $(KDIR26)/dvb/frontends + -install -m 644 -c $(inst_frontends) $(KDIR26)/dvb/frontends + -install -d $(KDIR26)/video -install -m 644 -c $(inst_video) $(KDIR26)/video diff -upr video4linux.orig/cx88-dvb.c video4linux/cx88-dvb.c --- video4linux.orig/cx88-dvb.c 2005-07-29 21:40:53.000000000 +0000 +++ video4linux/cx88-dvb.c 2005-07-29 21:41:59.000000000 +0000 @@ -32,10 +32,6 @@ #include #include "compat.h" -#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,13) -#undef HAVE_LGDT330X -#endif - #include "cx88.h" #include "dvb-pll.h" @@ -216,7 +212,7 @@ static struct or51132_config pchdtv_hd30 #endif #ifdef HAVE_LGDT330X -#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,13) +#if 1 static int lgdt330x_pll_set(struct dvb_frontend* fe, struct dvb_frontend_parameters* params) { @@ -289,7 +285,7 @@ static int lgdt330x_set_ts_param(struct static struct lgdt330x_config fusionhdtv_3_gold = { .demod_address = 0x0e, -#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,13) +#if 1 .demod_chip = LGDT3302, .serial_mpeg = 0x04, /* TPSERIAL for 3302 in TOP_CONTROL */ .pll_set = lgdt330x_pll_set, @@ -389,7 +385,7 @@ static int dvb_register(struct cx8802_de &dev->core->i2c_adap); } break; -#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,13) +#if 1 case CX88_BOARD_DVICO_FUSIONHDTV_5_GOLD: dev->ts_gen_cntrl = 0x08; { diff -upr video4linux.orig/saa7134-dvb.c video4linux/saa7134-dvb.c --- video4linux.orig/saa7134-dvb.c 2005-07-29 21:40:53.000000000 +0000 +++ video4linux/saa7134-dvb.c 2005-07-29 21:41:59.000000000 +0000 @@ -32,10 +32,6 @@ #include #include "compat.h" -#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,13) -#undef HAVE_TDA1004X -#endif - #include "saa7134-reg.h" #include "saa7134.h"