summaryrefslogtreecommitdiff
path: root/v4l/scripts/unmerge-trees.sh
blob: f5f3351784ef83c8be55e2a5aca3d27454e9e598 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#!/bin/sh

echo removing symlinks
cd ..
for x in `find linux -type l` ; do 
    rm -rf $x 2> /dev/null
done
cd v4l
patch -p2 <<'DIFF'
diff -up v4l-kernel/v4l/Make.config v4l-kernel.orig/v4l/Make.config
--- v4l-kernel/v4l/Make.config	2005-10-08 17:46:08.000000000 -0400
+++ v4l-kernel.orig/v4l/Make.config	2005-10-08 17:31:57.000000000 -0400
@@ -36,8 +36,5 @@ endif
 ifeq ($(CONFIG_VIDEO_BUF_DVB),m)
  CONFIG_VIDEO_CX88_DVB	:= m
  CONFIG_VIDEO_SAA7134_DVB := m
- CONFIG_DVB_BT8XX       := m
- CONFIG_DVB_BT8XX_DST   := m
- CONFIG_DVB_FRONTENDS    := m
 endif
 
diff -up v4l-kernel/v4l/Makefile v4l-kernel.orig/v4l/Makefile
--- v4l-kernel/v4l/Makefile	2005-10-08 17:45:48.000000000 -0400
+++ v4l-kernel.orig/v4l/Makefile	2005-10-08 17:31:57.000000000 -0400
@@ -81,7 +81,6 @@ 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)
@@ -190,7 +189,7 @@ export LC_ALL
 default:: links .version
 	$(MAKE) -C $(KDIR) SUBDIRS=$(PWD) $(MYCFLAGS) modules
 
-links:: dvb-links
+links::
 	@echo creating symbolic links...
 	@find ../linux/drivers/media/video -name '*.[c,h]' -type f -exec ln -sf '{}' . \;
 
@@ -202,7 +201,7 @@ links::
 	@find ../linux/drivers/media/dvb/frontends -name '*.[c,h]' -type l -exec ln -sf '{}' . \;
 	@find ../linux/drivers/media/dvb/bt8xx -name '*.[c,h]' -type l -exec ln -sf '{}' . \;
 
-install:: rminstall dvb-install
+install:: rminstall
 	@echo -e "\nInstalling new V4L modules at corresponding Kernel dir..."
 
 	@strip --strip-debug $(inst-m)
@@ -268,7 +267,7 @@ dvb-rminstall::
 		$(addprefix $(KDIR26)/dvb/frontends/, $(addsuffix .gz,$(inst_frontends))) 2>/dev/null
 	@echo
 
-rminstall:: dvb-rminstall
+rminstall::
 	@echo -e "\nEliminating old V4L modules (errors on this step is not a problem).."
 
 	-@rm -r $(DEST) \
@@ -291,7 +292,7 @@ rminstall:: dvb-rminstall
 rmmodules::
 	rmmod -w $(shell echo "$(v4l_modules)"|sed s,' ','\n',g|sed s,'-','_',g|sort|uniq -d)
 
-clean:: unmerge-trees
+clean::
 	find . -name '*.c' -type l -exec rm '{}' \;
 	find . -name '*.h' -type l -exec rm '{}' \;
 	-rm -f *~ *.o *.ko *.mod.c