diff options
author | Hauke Mehrtens <hauke@openwrt.org> | 2012-12-02 16:09:23 +0000 |
---|---|---|
committer | Hauke Mehrtens <hauke@openwrt.org> | 2012-12-02 16:09:23 +0000 |
commit | b1c02e0ceb2fe0e830a7704f991f71691a4fc6f1 (patch) | |
tree | 182d7c9966c4f8fa068c10a3006d700656751a29 /tools/b43-tools | |
parent | 19d0fc1c100eeb4be3d9a06ce9c70a6c23ba1933 (diff) | |
download | master-187ad058-b1c02e0ceb2fe0e830a7704f991f71691a4fc6f1.tar.gz master-187ad058-b1c02e0ceb2fe0e830a7704f991f71691a4fc6f1.tar.bz2 master-187ad058-b1c02e0ceb2fe0e830a7704f991f71691a4fc6f1.zip |
b43-tools: pack the lcn firmware into the brcmsmac firmware package.
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@34453 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'tools/b43-tools')
-rw-r--r-- | tools/b43-tools/patches/003-brcmsmac-lcn-ucode.patch | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/tools/b43-tools/patches/003-brcmsmac-lcn-ucode.patch b/tools/b43-tools/patches/003-brcmsmac-lcn-ucode.patch new file mode 100644 index 0000000000..12966a558f --- /dev/null +++ b/tools/b43-tools/patches/003-brcmsmac-lcn-ucode.patch @@ -0,0 +1,22 @@ +diff --git a/fwcutter/fwcutter.c b/fwcutter/fwcutter.c +index 6f5788c..e9082f9 100644 +--- a/fwcutter/fwcutter.c ++++ b/fwcutter/fwcutter.c +@@ -449,7 +449,7 @@ static int brcmsmac_name_to_idx(const char *name) + return D11N0INITVALS16; + } else if (strcmp("ucode16_mimo", name) == 0) { + return D11UCODE_OVERSIGHT16_MIMO; +- } else if (strcmp("ucode24_mimo", name) == 0) { ++ } else if (strcmp("ucode24_lcn", name) == 0) { + return D11UCODE_OVERSIGHT24_LCN; + } + return 0; +@@ -459,7 +459,7 @@ static int brcmsmac_name_to_size_idx(const char *name) + { + if (strcmp("ucode16_mimo", name) == 0) { + return D11UCODE_OVERSIGHT16_MIMOSZ; +- } else if (strcmp("ucode24_mimo", name) == 0) { ++ } else if (strcmp("ucode24_lcn", name) == 0) { + return D11UCODE_OVERSIGHT24_LCNSZ; + } + return 0; |