summaryrefslogtreecommitdiffstats
path: root/bcmdhd/firmware/bcm4329/device-bcm.mk
diff options
context:
space:
mode:
authorDmitry Shmidt <dimitrysh@google.com>2011-07-22 10:08:01 -0700
committerDmitry Shmidt <dimitrysh@google.com>2011-07-22 10:56:29 -0700
commited2837d85977ed27c5b804995aba0219fa51ecc1 (patch)
treec98a6159a0b852bcad24ba24ff7010ca64ba1cc5 /bcmdhd/firmware/bcm4329/device-bcm.mk
parent4b19c41f45383970a359e9a461bbb380701510e4 (diff)
downloadhardware_broadcom_wlan-ed2837d85977ed27c5b804995aba0219fa51ecc1.zip
hardware_broadcom_wlan-ed2837d85977ed27c5b804995aba0219fa51ecc1.tar.gz
hardware_broadcom_wlan-ed2837d85977ed27c5b804995aba0219fa51ecc1.tar.bz2
Add device-bcm.mk for bcm4329 firmware
Change-Id: I8981d20e2688aca7390267da411e39ad06f31049 Signed-off-by: Dmitry Shmidt <dimitrysh@google.com>
Diffstat (limited to 'bcmdhd/firmware/bcm4329/device-bcm.mk')
-rw-r--r--bcmdhd/firmware/bcm4329/device-bcm.mk31
1 files changed, 31 insertions, 0 deletions
diff --git a/bcmdhd/firmware/bcm4329/device-bcm.mk b/bcmdhd/firmware/bcm4329/device-bcm.mk
new file mode 100644
index 0000000..1bc7dd4
--- /dev/null
+++ b/bcmdhd/firmware/bcm4329/device-bcm.mk
@@ -0,0 +1,31 @@
+#
+# Copyright (C) 2008 The Android Open Source Project
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+########################
+
+ifeq ($(strip $(WIFI_BAND)),802_11_ABG)
+BCM_FW_SRC_FILE_STA := fw_bcm4329_abg.bin
+else
+BCM_FW_SRC_FILE_STA := fw_bcm4329.bin
+endif
+BCM_FW_SRC_FILE_AP := fw_bcm4329_apsta.bin
+BCM_FW_SRC_FILE_P2P := fw_bcm4329_p2p.bin
+
+PRODUCT_COPY_FILES += \
+ hardware/broadcom/wlan/bcmdhd/firmware/bcm4329/$(BCM_FW_SRC_FILE_STA):system/vendor/firmware/fw_bcmdhd.bin \
+ hardware/broadcom/wlan/bcmdhd/firmware/bcm4329/$(BCM_FW_SRC_FILE_AP):system/vendor/firmware/fw_bcmdhd_apsta.bin \
+ hardware/broadcom/wlan/bcmdhd/firmware/bcm4329/$(BCM_FW_SRC_FILE_P2P):system/vendor/firmware/fw_bcmdhd_p2p.bin
+########################