blob: 22faa67b0ef059ca3ba4442d175241fbcd806fff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/bin/sh
scripts/bttv.pl bttv.h bttv-cards.c \
| perl -ne 's/[ \t]+$//; print' > doc/CARDLIST.bttv
scripts/cx88.pl cx88.h cx88-cards.c \
| perl -ne 's/[ \t]+$//; print' > doc/CARDLIST.cx88
./scripts/em2820.pl em2820-cards.c \
| perl -ne 's/[ \t]+$//; print' > doc/CARDLIST.em2820
cat tuner-simple.c \
| grep "{ \"" \
| perl -ne '/"([^"]+)"/; printf("tuner=%d - %s\n",$i++,$1)' \
| perl -ne 's/[ \t]+$//; print' > doc/CARDLIST.tuner
scripts/saa7134.pl saa7134.h saa7134-cards.c \
| perl -ne 's/[ \t]+$//; print' > doc/CARDLIST.saa7134
|