diff options
author | Michael Krufky <devnull@localhost> | 2006-01-03 06:09:53 +0000 |
---|---|---|
committer | Michael Krufky <devnull@localhost> | 2006-01-03 06:09:53 +0000 |
commit | 7330a69cebde835c35bcede119a03dc8f1982e33 (patch) | |
tree | 6435747a58d976cfc218de2deb3f8cd2eb696498 /linux/Documentation/dvb | |
parent | aa060eaad74d62541aa4e1970988f948fb486ab1 (diff) | |
download | mediapointer-dvb-s2-7330a69cebde835c35bcede119a03dc8f1982e33.tar.gz mediapointer-dvb-s2-7330a69cebde835c35bcede119a03dc8f1982e33.tar.bz2 |
Add DViCO Bluebird firmware to dvb_get_firmware script
- Add DViCO Bluebird firmware to dvb_get_firmware script,
for FusionHDTV USB devices.
- Use usb alt setting 0 for EP4 transfer (dvb-t),
- Use usb alt setting 7 for EP2 transfer (atsc)
- Added comment to lgdt330x.c to indicate support for
DViCO FusionHDTV5 USB Gold.
Thanks to: Jeff Lee <JeffLee@dvico.com>
Signed-off-by: Michael Krufky <mkrufky@m1k.net>
Diffstat (limited to 'linux/Documentation/dvb')
-rw-r--r-- | linux/Documentation/dvb/get_dvb_firmware | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/linux/Documentation/dvb/get_dvb_firmware b/linux/Documentation/dvb/get_dvb_firmware index 4e5e6a979..e339a180a 100644 --- a/linux/Documentation/dvb/get_dvb_firmware +++ b/linux/Documentation/dvb/get_dvb_firmware @@ -23,7 +23,7 @@ use IO::Handle; @components = ( "sp8870", "sp887x", "tda10045", "tda10046", "av7110", "dec2000t", "dec2540t", "dec3000s", "vp7041", "dibusb", "nxt2002", "nxt2004", - "or51211", "or51132_qam", "or51132_vsb"); + "or51211", "or51132_qam", "or51132_vsb", "bluebird"); # Check args syntax() if (scalar(@ARGV) != 1); @@ -312,6 +312,19 @@ sub or51132_vsb { $fwfile; } +sub bluebird { + my $url = "http://www.linuxtv.org/~mkrufky/dvb-usb-bluebird-01.fw"; + my $outfile = "dvb-usb-bluebird-01.fw"; + my $hash = "658397cb9eba9101af9031302671f49d"; + + checkstandard(); + + wgetfile($outfile, $url); + verify($outfile,$hash); + + $outfile; +} + # --------------------------------------------------------------- # Utilities |