summaryrefslogtreecommitdiff
path: root/v4l/scripts/cardlist
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <devnull@localhost>2005-09-29 20:26:20 +0000
committerMauro Carvalho Chehab <devnull@localhost>2005-09-29 20:26:20 +0000
commitb48bc5877932642065cb06934a12e1cdf6f83ce9 (patch)
tree962504011f00156497f53c9260625191ae10e620 /v4l/scripts/cardlist
parentf91f39fbb971167dc49830d38810607736ab1b18 (diff)
downloadmediapointer-dvb-s2-b48bc5877932642065cb06934a12e1cdf6f83ce9.tar.gz
mediapointer-dvb-s2-b48bc5877932642065cb06934a12e1cdf6f83ce9.tar.bz2
- Updated an entry to reflect changes on tuner-simple.c
- Added PCI subvendor ID to bttv boards Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br>
Diffstat (limited to 'v4l/scripts/cardlist')
-rw-r--r--v4l/scripts/cardlist12
1 files changed, 3 insertions, 9 deletions
diff --git a/v4l/scripts/cardlist b/v4l/scripts/cardlist
index 33d6ad99e..24a3072bf 100644
--- a/v4l/scripts/cardlist
+++ b/v4l/scripts/cardlist
@@ -1,14 +1,9 @@
#!/bin/sh
-cat bttv-cards.c \
- | grep "\.name.*=" \
- | perl -ne '/"([^"]+)"/; printf("card=%d - %s\n",$i++,$1)' \
- | perl -ne 's/[ \t]+$//; print' > doc/CARDLIST.bttv
-LINE="`grep -n "gdi_tuner\[\]" cx88-cards.c|cut -f1 -d:`"
+scripts/bttv.pl bttv.h bttv-cards.c \
+ | perl -ne 's/[ \t]+$//; print' > doc/CARDLIST.bttv
-head -$LINE cx88-cards.c \
- | grep "\.name.*=" \
- | perl -ne '/"([^"]+)"/; printf("card=%d - %s\n",$i++,$1)' \
+scripts/cx88.pl cx88.h cx88-cards.c \
| perl -ne 's/[ \t]+$//; print' > doc/CARDLIST.cx88
cat tuner-simple.c \
@@ -19,4 +14,3 @@ cat tuner-simple.c \
scripts/saa7134.pl saa7134.h saa7134-cards.c \
| perl -ne 's/[ \t]+$//; print' > doc/CARDLIST.saa7134
-