summaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@redhat.com>2010-07-11 17:23:15 -0300
committerMauro Carvalho Chehab <mchehab@redhat.com>2010-07-11 17:23:15 -0300
commit6ddf0edaf48ee409376a46e487043a63a052c79e (patch)
tree587bab3386c4e4d919df6f155d1ce0a6f8738ab6 /Documentation
parent24660f47c6d67dca505179d6a17a82351c0a8d51 (diff)
parenta41ae2431a3d1c751bda1ef0e9b44b27192e19de (diff)
Merge /home/v4l/v4l/patchwork
* /home/v4l/v4l/patchwork: (25 commits) V4L/DVB: gspca - sq930x: Add some comments for sensor mt9v111 V4L/DVB: gspca - vc032x: Add trace of USB exchanges V4L/DVB: gspca - vc032x: Stop the USB exchanges on error V4L/DVB: gspca - vc032x: Add some comments V4L/DVB: gspca - main: Don't use the frame buffer flags V4L/DVB: gspca - main: Possible race condition in queue management V4L/DVB: remove obsolete conditionalizing on DVB_DIBCOM_DEBUG V4L/DVB: lgs8gxx: remove firmware for lgs8g75 V4L/DVB: si470x: -EINVAL overwritten in si470x_vidioc_s_tuner() V4L/DVB: IR/mceusb: more streamlining of device init IR/mceusb: remove unused vars from gen1 init V4L/DVB: lirc: use unlocked_ioctl V4L/DVB: [-next] IR: jvc-decoder needs BITREVERSE V4L/DVB: IR/lirc_dev: fix locking in lirc_dev_fop_read V4L/DVB: Retrieve firmware for az6027 V4L/DVB: v4l2-dev: fix memory leak V4L/DVB: dvb_frontend: fix typos in comments and one function V4L/DVB: tda10048: clear the uncorrected packet registers when saturated V4L/DVB: tda10048: fix bitmask for the transmission mode V4L/DVB: tda10048: fix the uncomplete function tda10048_read_ber ...
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/dvb/get_dvb_firmware19
1 files changed, 18 insertions, 1 deletions
diff --git a/Documentation/dvb/get_dvb_firmware b/Documentation/dvb/get_dvb_firmware
index 239cbdbf4d12..9ea94dc3556e 100644
--- a/Documentation/dvb/get_dvb_firmware
+++ b/Documentation/dvb/get_dvb_firmware
@@ -26,7 +26,7 @@ use IO::Handle;
"dec3000s", "vp7041", "dibusb", "nxt2002", "nxt2004",
"or51211", "or51132_qam", "or51132_vsb", "bluebird",
"opera1", "cx231xx", "cx18", "cx23885", "pvrusb2", "mpc718",
- "af9015", "ngene");
+ "af9015", "ngene", "az6027");
# Check args
syntax() if (scalar(@ARGV) != 1);
@@ -567,6 +567,23 @@ sub ngene {
"$file1, $file2";
}
+sub az6027{
+ my $file = "AZ6027_Linux_Driver.tar.gz";
+ my $url = "http://linux.terratec.de/files/$file";
+ my $firmware = "dvb-usb-az6027-03.fw";
+
+ wgetfile($file, $url);
+
+ #untar
+ if( system("tar xzvf $file $firmware")){
+ die "failed to untar firmware";
+ }
+ if( system("rm $file")){
+ die ("unable to remove unnecessary files");
+ }
+
+ $firmware;
+}
# ---------------------------------------------------------------
# Utilities