summaryrefslogtreecommitdiff
path: root/v4l
diff options
context:
space:
mode:
Diffstat (limited to 'v4l')
-rw-r--r--v4l/ChangeLog26
-rw-r--r--v4l/Makefile16
-rw-r--r--v4l/scripts/prepare-ChangeLog.pl2
3 files changed, 40 insertions, 4 deletions
diff --git a/v4l/ChangeLog b/v4l/ChangeLog
index 1684ad3d3..5c9ae3e10 100644
--- a/v4l/ChangeLog
+++ b/v4l/ChangeLog
@@ -1,3 +1,29 @@
+2005-10-08 20:03 mchehab
+
+ From: Mauro Carvalho Chehab <mchehab@brturbo.com.br>
+
+ * ../linux/drivers/media/video/tveeprom.c:
+ - Fixed include when compiling at kernel tree
+
+ * ../linux/include/linux/videodev.h:
+ - removed compat.h from wrong place
+
+ * ../linux/drivers/media/video/tvp5150.c:
+ * ../linux/kernel/drivers/usb/media/em2820-cards.c:
+ * ../linux/kernel/drivers/usb/media/em2820-core.c:
+ * ../linux/kernel/drivers/usb/media/em2820-i2c.c:
+ * ../linux/kernel/drivers/usb/media/em2820-video.c:
+ - included compat.h at the right place
+
+ * ../v4l/Makefile:
+ - now creates symlinks to allow compiling V4L stuff at
+ v4l dir.
+
+ * ../v4l/scripts/prepare-ChangeLog.pl:
+ - modified to include other directories.
+
+ Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br>
+
2005-10-08 17:02 mkrufky
* v4l1-compat.c: (v4l_compat_translate_ioctl):
diff --git a/v4l/Makefile b/v4l/Makefile
index f2918c1eb..13318d519 100644
--- a/v4l/Makefile
+++ b/v4l/Makefile
@@ -130,6 +130,7 @@ DEST := /lib/modules/$(KERNELRELEASE)/$(MDIR)
KDIR26 := /lib/modules/$(KERNELRELEASE)/kernel/drivers/media
KDIRUSB := /lib/modules/$(KERNELRELEASE)/kernel/drivers/usb/media
+CPPFLAGS := -I$(SUBDIRS)/../linux/include $(CPPFLAGS)
# which files to install?
inst-m := $(wildcard *.ko)
@@ -154,7 +155,14 @@ v4l_modules := $(shell lsmod|cut -d' ' -f1 ) $(patsubst %.ko,%,$(inst-m))
LC_ALL = POSIX
export LC_ALL
-default:: linux media
+default::
+ find ../linux/drivers/media/video -name '*.[c,h]' -type f -exec ln -sf '{}' . \;
+ find ../linux/kernel/drivers/usb/media -name '*.[c,h]' -type f -exec ln -sf '{}' . \;
+
+# find ../linux/include -name '*.[h]' -type f -exec ln -sf '{}' . \;
+
+ ln -sf ../linux/drivers/media/common/ir-common.c .
+
$(MAKE) -C $(KDIR) SUBDIRS=$(PWD) modules
@@ -212,11 +220,13 @@ rmmodules::
rmmod -w $(shell echo "$(v4l_modules)"|sed s,' ','\n',g|sed s,'-','_',g|sort|uniq -d)
clean::
+ find . -name '*.c' -type l -exec rm '{}' \;
+ find . -name '*.h' -type l -exec rm '{}' \;
-rm -f *~ *.o *.ko *.mod.c
- -rm -f .version .*.o.flags .*.o.d .*.o.cmd .*.ko.cmd
linux media:
- ln -s . $@
+ -rm -f .version .*.o.flags .*.o.d .*.o.cmd .*.ko.cmd
+ -rm -rf .tmp_versions
#################################################
# build tarballs
diff --git a/v4l/scripts/prepare-ChangeLog.pl b/v4l/scripts/prepare-ChangeLog.pl
index 1e5d2e743..a479c6999 100644
--- a/v4l/scripts/prepare-ChangeLog.pl
+++ b/v4l/scripts/prepare-ChangeLog.pl
@@ -90,7 +90,7 @@ close OLD_CHANGE_LOG;
print STDERR " Running cvs diff to find changes.\n";
my %changed_line_ranges;
my $file;
-open DIFF, "cvs -fq diff -N |" or die "The cvs diff failed: $OS_ERROR.\n";
+open DIFF, "cvs -fq diff -N ..|" or die "The cvs diff failed: $OS_ERROR.\n";
while (<DIFF>)
{
$file = $1 if /^Index: (\S+)$/;