diff options
author | Michael Hunold <devnull@localhost> | 2003-01-09 10:27:22 +0000 |
---|---|---|
committer | Michael Hunold <devnull@localhost> | 2003-01-09 10:27:22 +0000 |
commit | 096166622785876bd4360f2cdb1495665ca03c6c (patch) | |
tree | 9a152955f0010e8dcb74aed11528d55f3c5747c6 /linux/drivers/media/dvb | |
parent | d943bbf1e37291d4aa2aacd696898ae8a596bb1c (diff) | |
download | mediapointer-dvb-s2-096166622785876bd4360f2cdb1495665ca03c6c.tar.gz mediapointer-dvb-s2-096166622785876bd4360f2cdb1495665ca03c6c.tar.bz2 |
Fixes for 2.5.55 all over the place:
- removed the patches, they are not needed any more. you can now
use a vanilla 2.5.55 kernel
- created a new backport for video-buf and videodev from the 2.5.55
sources
- necessary fixes to the saa7146 driver due to changes in 2.5.55
- the core budget functions are now provided by a module called
"budget-core.o". (otherwise static compilation is not possible...)
- removed #ifdef MODULE crap from all files
Misc.
- "xawtv" (using xv extension) resulted in wrong colors. the problem
is within "xawtv". Gerd Knorr told me, that it'll be fixed in the
next release.
I tested this version with 2.4.20, 2.5.55 (modules) and 2.5.55
(static).
Diffstat (limited to 'linux/drivers/media/dvb')
-rw-r--r-- | linux/drivers/media/dvb/ttpci-budget/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/linux/drivers/media/dvb/ttpci-budget/Makefile b/linux/drivers/media/dvb/ttpci-budget/Makefile index efa90b4d6..a5a8c7e8f 100644 --- a/linux/drivers/media/dvb/ttpci-budget/Makefile +++ b/linux/drivers/media/dvb/ttpci-budget/Makefile @@ -2,10 +2,10 @@ # Makefile for the kernel AV7110 DVB device driver # -dvb-ttpci-budget-objs := budget-core.o budget.o -dvb-ttpci-budget-av-objs := budget-core.o budget-av.o +dvb-ttpci-budget-objs := budget.o +dvb-ttpci-budget-av-objs := budget-av.o -obj-$(CONFIG_DVB_BUDGET) += dvb-ttpci-budget.o -obj-$(CONFIG_DVB_BUDGET_AV) += dvb-ttpci-budget-av.o +obj-$(CONFIG_DVB_BUDGET) += budget-core.o dvb-ttpci-budget.o +obj-$(CONFIG_DVB_BUDGET_AV) += budget-core.o dvb-ttpci-budget-av.o EXTRA_CFLAGS = -Idrivers/media/dvb/dvb-core/ -I$(src)/../../common/ -I$(src)/../../common/saa7146 |