From: hauke Date: Sat, 12 Jul 2014 15:41:50 +0000 (+0000) Subject: b43-tools: b43-fwsquash.py: manually remove LP-PHY 16 support X-Git-Url: https://git.archive.openwrt.org/?a=commitdiff_plain;h=6d90a5620820f81ca7a551cb7b80ca8e6673bc39;p=openwrt.git b43-tools: b43-fwsquash.py: manually remove LP-PHY 16 support I have never seen a LP-PHY with core rev 16 or higher, but the ucode will be included, because we need LP-PHY 13 and 15 and N-PHY core rev 16. Comment out the code for now. Signed-off-by: Hauke Mehrtens git-svn-id: svn://svn.openwrt.org/openwrt/trunk@41595 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/tools/b43-tools/files/b43-fwsquash.py b/tools/b43-tools/files/b43-fwsquash.py index cd1ff91c9b..2946d7c3c3 100755 --- a/tools/b43-tools/files/b43-fwsquash.py +++ b/tools/b43-tools/files/b43-fwsquash.py @@ -74,7 +74,7 @@ revmapping = { "ucode14.fw" : ( (14,), ("LP",), ), "ucode15.fw" : ( (15,), ("LP",), ), "ucode16_mimo.fw" : ( (16,17,18,19,23,), ("N",), ), - "ucode16_lp.fw" : ( (16,17,18,19,), ("LP",), ), +# "ucode16_lp.fw" : ( (16,17,18,19,), ("LP",), ), "ucode24_lcn.fw" : ( (24,), ("LCN",), ), "ucode25_mimo.fw" : ( (25,28,), ("N",), ), "ucode25_lcn.fw" : ( (25,28,), ("LCN",), ), @@ -102,7 +102,7 @@ initvalmapping = { "lp0initvals13.fw" : ( (13,), ("LP",), ), "lp0initvals14.fw" : ( (14,), ("LP",), ), "lp0initvals15.fw" : ( (15,), ("LP",), ), - "lp0initvals16.fw" : ( (16,17,18,), ("LP",), ), +# "lp0initvals16.fw" : ( (16,17,18,), ("LP",), ), "lcn0initvals24.fw" : ( (24,), ("LCN",), ), "ht0initvals26.fw" : ( (26,), ("HT",), ), "ht0initvals29.fw" : ( (29,), ("HT",), ), @@ -120,7 +120,7 @@ initvalmapping = { "lp0bsinitvals13.fw" : ( (13,), ("LP",), ), "lp0bsinitvals14.fw" : ( (14,), ("LP",), ), "lp0bsinitvals15.fw" : ( (15,), ("LP",), ), - "lp0bsinitvals16.fw" : ( (16,17,18,), ("LP",), ), +# "lp0bsinitvals16.fw" : ( (16,17,18,), ("LP",), ), "lcn0bsinitvals24.fw" : ( (24,), ("LCN",), ), "ht0bsinitvals26.fw" : ( (26,), ("HT",), ), "ht0bsinitvals29.fw" : ( (29,), ("HT",), ),