diff options
author | Andrii Beregovenko | 2013-02-25 13:02:11 -0600 |
---|---|---|
committer | Andrii Beregovenko | 2013-03-19 10:03:04 -0500 |
commit | 4fbba49fb3736ffd429fb028270f989c97264de0 (patch) | |
tree | 962c5043377e05eeb0c1b26b552ef5f065ed149f /wl12xx/Android.mk | |
parent | bafb46256331fa06c5cbd92936dac13a5d5fc128 (diff) | |
download | device-ti-proprietary-open-4fbba49fb3736ffd429fb028270f989c97264de0.tar.gz device-ti-proprietary-open-4fbba49fb3736ffd429fb028270f989c97264de0.tar.xz device-ti-proprietary-open-4fbba49fb3736ffd429fb028270f989c97264de0.zip |
wlan: rework rules for wlan firmware binaries
Organize prebuilt firmware binaries for WiLink's WiFi
as regular Android prebuilts. Move corresponding rules to
separate makefile.
Change-Id: I5e1b95dfe9092f67f00b47e15a6507891c262e93
Signed-off-by: Andrii Beregovenko <a.beregovenko@ti.com>
Diffstat (limited to 'wl12xx/Android.mk')
-rw-r--r-- | wl12xx/Android.mk | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/wl12xx/Android.mk b/wl12xx/Android.mk new file mode 100644 index 0000000..f24f118 --- /dev/null +++ b/wl12xx/Android.mk | |||
@@ -0,0 +1,23 @@ | |||
1 | # Copyright (C) 2011 The Android Open Source Project | ||
2 | # | ||
3 | # Licensed under the Apache License, Version 2.0 (the "License"); | ||
4 | # you may not use this file except in compliance with the License. | ||
5 | # You may obtain a copy of the License at | ||
6 | # | ||
7 | # http://www.apache.org/licenses/LICENSE-2.0 | ||
8 | # | ||
9 | # Unless required by applicable law or agreed to in writing, software | ||
10 | # distributed under the License is distributed on an "AS IS" BASIS, | ||
11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
12 | # See the License for the specific language governing permissions and | ||
13 | # limitations under the License. | ||
14 | # | ||
15 | |||
16 | LOCAL_PATH := $(call my-dir) | ||
17 | |||
18 | TARGET_EXTRACTED_FW := $(PRODUCT_OUT)/extracted_firmwares | ||
19 | |||
20 | ifeq ($(strip $(USES_TI_MAC80211)),true) | ||
21 | include $(call all-makefiles-under, $(LOCAL_PATH)) | ||
22 | endif | ||
23 | |||