• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright (C) 2008 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
15LOCAL_PATH := $(call my-dir)
16
17TI_WILINK_FW_PATH := $(TARGET_OUT_ETC)/firmware/ti-connectivity
18
19include $(CLEAR_VARS)
20LOCAL_MODULE := TIInit_11.8.32.bts
21ifneq ($(filter hikey960, $(TARGET_DEVICE)),)
22LOCAL_SRC_FILES := TIInit_11.8.32-pcm-960.bts
23else
24LOCAL_SRC_FILES := TIInit_11.8.32.bts
25endif
26LOCAL_MODULE_CLASS := FIRMWARE
27LOCAL_MODULE_PATH := $(TI_WILINK_FW_PATH)
28LOCAL_MODULE_TAGS := optional
29LOCAL_MODULE_OWNER := ti
30include $(BUILD_PREBUILT)
31
32include $(CLEAR_VARS)
33LOCAL_MODULE := wl18xx-fw-4.bin
34LOCAL_SRC_FILES := wl18xx-fw-4.bin
35LOCAL_MODULE_CLASS := FIRMWARE
36LOCAL_MODULE_PATH := $(TI_WILINK_FW_PATH)
37LOCAL_MODULE_TAGS := optional
38LOCAL_MODULE_OWNER := ti
39include $(BUILD_PREBUILT)
40
41include $(CLEAR_VARS)
42LOCAL_MODULE := wl18xx-conf.bin
43ifneq ($(filter hikey960, $(TARGET_DEVICE)),)
44LOCAL_SRC_FILES := wl18xx-conf-wl1837mod.bin
45else
46LOCAL_SRC_FILES := wl18xx-conf.bin
47endif
48LOCAL_MODULE_CLASS := FIRMWARE
49LOCAL_MODULE_PATH := $(TI_WILINK_FW_PATH)
50LOCAL_MODULE_TAGS := optional
51LOCAL_MODULE_OWNER := ti
52include $(BUILD_PREBUILT)
53