blob: 634ffc4dcdd90cce4cd093ebb55bf05a30807382 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/bin/sh
cat bttv-cards.c \
| grep "\.name.*=" \
| perl -ne '/"([^"]+)"/; printf("card=%d - %s\n",$i++,$1)' \
> doc/CARDLIST.bttv
LINE="`grep -n "gdi_tuner\[\]" cx88-cards.c|cut -f1 -d:`"
head -$LINE cx88-cards.c \
| grep "\.name.*=" \
| perl -ne '/"([^"]+)"/; printf("card=%d - %s\n",$i++,$1)' \
> doc/CARDLIST.cx88
cat tuner-simple.c \
| grep "{ \"" \
| perl -ne '/"([^"]+)"/; printf("tuner=%d - %s\n",$i++,$1)' \
> doc/CARDLIST.tuner
scripts/saa7134.pl saa7134.h saa7134-cards.c \
> doc/CARDLIST.saa7134
|