~ubuntu-branches/ubuntu/hardy/linux-backports-modules-2.6.24/hardy-security

« back to all changes in this revision

Viewing changes to updates/wireless/iwlwifi/BOM

  • Committer: Bazaar Package Importer
  • Author(s): , Ben Collins
  • Date: 2008-04-02 06:59:04 UTC
  • Revision ID: james.westby@ubuntu.com-20080402065904-e5knh2gn2hms3xbb
Tags: 2.6.24-14.11
[Ben Collins]

* iwlwifi: Update to iwlwifi-1.2.25 and mac80211-10.0.4
  - LP: #200950
* ubuntu: Slight cleanups to module hiearchy and Makefiles
* mac80211: Enable LED triggers
* iwlwifi: Add LED trigger support (rx and tx only)
  - LP: #176090

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
#
 
3
# Retrieve the iwlwifi bill of materials and extract the contents. You
 
4
# only need to do this when you are updating from one version
 
5
# if iwlwifi to the next.
 
6
#
 
7
IVER=1.2.25
 
8
MVER=10.0.4
 
9
FW3945_VER=2.14.1.5
 
10
FW4965_VER=4.44.1.20
 
11
 
 
12
if [ ! -f iwlwifi-${IVER}.tgz ] ; then wget http://intellinuxwireless.org/iwlwifi/downloads/iwlwifi-${IVER}.tgz; fi
 
13
if [ ! -f mac80211-${MVER}.tgz ] ; then wget http://intellinuxwireless.org/mac80211/downloads/mac80211-${MVER}.tgz; fi
 
14
if [ ! -f iwlwifi-3945-ucode-${FW3945_VER}.tgz ] ; then wget http://intellinuxwireless.org/iwlwifi/downloads/iwlwifi-3945-ucode-${FW3945_VER}.tgz; fi
 
15
if [ ! -f iwlwifi-4965-ucode-${FW4965_VER}.tgz ] ; then wget http://intellinuxwireless.org/iwlwifi/downloads/iwlwifi-4965-ucode-${FW4965_VER}.tgz; fi
 
16
 
 
17
#
 
18
# Untar and normalize the directory names.
 
19
#
 
20
rm -rf iwlwifi; tar xzf iwlwifi-${IVER}.tgz; mv iwlwifi-${IVER} iwlwifi
 
21
rm -rf mac80211; tar xzf mac80211-${MVER}.tgz; mv  mac80211-${MVER} mac80211
 
22
 
 
23
#
 
24
# Note the '-1' in the new firmware file name.
 
25
#
 
26
tar xzf iwlwifi-3945-ucode-${FW3945_VER}.tgz
 
27
mv iwlwifi-3945-ucode-${FW3945_VER}/iwlwifi-3945-1.ucode ../../../ubuntu-firmware/iwlwifi/iwlwifi-3945-1.ucode
 
28
rm -rf iwlwifi-3945-ucode-${FW3945_VER}
 
29
 
 
30
#
 
31
# Note the '-1' in the new firmware file name.
 
32
#
 
33
tar xzf iwlwifi-4965-ucode-${FW4965_VER}.tgz
 
34
mv iwlwifi-4965-ucode-${FW4965_VER}/iwlwifi-4965-1.ucode ../../../ubuntu-firmware/iwlwifi/iwlwifi-4965-1.ucode
 
35
rm -rf iwlwifi-4965-ucode-${FW4965_VER}
 
36