mirror of
https://github.com/nxp-imx/mwifiex.git
synced 2024-11-14 11:05:34 +00:00
ecb4c6f27f
Reoson: integrate WiFi code and fix build error Test: i.MX 8M mini Change-Id: I88f6deadc6638a99627f31741da0be7167827c76
44 lines
1.6 KiB
Makefile
44 lines
1.6 KiB
Makefile
# Copyright 2021 NXP
|
|
#
|
|
# 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.
|
|
|
|
KERNEL_SRC := $(TARGET_OUT_INTERMEDIATES)/KERNEL_OBJ
|
|
TARGET_ARCH := $(TARGET_KERNEL_ARCH)
|
|
MXMWIFI_CROSS_COMPILE := aarch64-linux-gnu-
|
|
|
|
MXMWIFI_SRC_PATH := $(MXMWIFI_PATH)/mxm_wifiex/wlan_src
|
|
MXMWIFI_OUT := $(TARGET_OUT_INTERMEDIATES)/MXMWIFI_OBJ
|
|
|
|
KERNEL_CFLAGS ?= KCFLAGS=-mno-android
|
|
ARCH ?= $(TARGET_ARCH)
|
|
|
|
MXMWIFI_KERNELENVSH := $(MXMWIFI_OUT)/kernelenv.sh
|
|
.PHONY: $(MXMWIFI_KERNELENVSH)
|
|
$(MXMWIFI_KERNELENVSH):
|
|
mkdir -p $(MXMWIFI_OUT)
|
|
echo 'export KERNEL_SRC=$(KERNEL_SRC)' > $(MXMWIFI_KERNELENVSH)
|
|
echo 'export CROSS_COMPILE=$(MXMWIFI_CROSS_COMPILE)' >> $(MXMWIFI_KERNELENVSH)
|
|
echo 'export ARCH=$(ARCH)' >> $(MXMWIFI_KERNELENVSH)
|
|
|
|
mxmwifi: $(MXMWIFI_KERNELENVSH) $(MXMWIFI_SRC_PATH)
|
|
$(hide) if [ ${clean_build} = 1 ]; then \
|
|
PATH=$$PATH $(MAKE) -C $(MXMWIFI_SRC_PATH) ANDROID=yes clean; \
|
|
fi
|
|
@ . $(MXMWIFI_KERNELENVSH); $(kernel_build_shell_env) \
|
|
$(MAKE) -C $(MXMWIFI_SRC_PATH) ANDROID=yes \
|
|
$(CLANG_TO_COMPILE) \
|
|
$(KERNEL_CFLAGS) \
|
|
ARCH=$(ARCH) \
|
|
DEBUG=$(DEBUG);
|
|
cp $(MXMWIFI_SRC_PATH)/mlan.ko $(MXMWIFI_OUT);
|
|
cp $(MXMWIFI_SRC_PATH)/moal.ko $(MXMWIFI_OUT);
|