mirror of
https://github.com/lwfinger/rtl8188eu.git
synced 2025-01-31 11:43:38 +00:00
0f68189028
This changes the `test` Makefile target conditional to pass for Sapling cloned repos. I was building this locally and ran into this issue because I cloned the repo using Sapling (https://sapling-scm.com) which uses a `.sl` directory at the repo root as opposed to a `.git` directory, and as such got the error message about zip files. Getting around the message was just making an empty top level `.git` directory, but IMO it shouldn't show this error in the first place. As of now, this would also fail with for Mercurial cloned repos (which uses a `.hg` directory). I thought of generalizing it to check for any hidden top level directory, but technically `.git` can be a can be a text file (see: https://git-scm.com/docs/gitrepository-layout) Also, I opted to not change the message printed in the failure case to include this as it might cause more confusion than benefit.
192 lines
4.3 KiB
Makefile
192 lines
4.3 KiB
Makefile
SHELL := /bin/bash
|
|
EXTRA_CFLAGS += $(USER_EXTRA_CFLAGS)
|
|
EXTRA_CFLAGS += -O1
|
|
|
|
EXTRA_CFLAGS += -Wno-unused-variable
|
|
EXTRA_CFLAGS += -Wno-unused-value
|
|
EXTRA_CFLAGS += -Wno-unused-label
|
|
EXTRA_CFLAGS += -Wno-unused-parameter
|
|
EXTRA_CFLAGS += -Wno-unused-function
|
|
EXTRA_CFLAGS += -Wno-unused
|
|
|
|
EXTRA_CFLAGS += -Wno-uninitialized
|
|
|
|
EXTRA_CFLAGS += -I$(src)/include
|
|
|
|
ccflags-y += -D__CHECK_ENDIAN__
|
|
|
|
CONFIG_AUTOCFG_CP = n
|
|
|
|
CONFIG_RTL8188EU = m
|
|
|
|
CONFIG_USB_HCI = y
|
|
|
|
CONFIG_BT_COEXIST = n
|
|
CONFIG_WOWLAN = n
|
|
|
|
export TopDIR ?= $(shell pwd)
|
|
|
|
MSG="Directory .git does not exist indicating that you downloaded the source as a zip file. Only the 'git clone' method is now supported."
|
|
|
|
OUTSRC_FILES := \
|
|
hal/HalHWImg8188E_MAC.o \
|
|
hal/HalHWImg8188E_BB.o \
|
|
hal/HalHWImg8188E_RF.o \
|
|
hal/HalPhyRf.o \
|
|
hal/HalPhyRf_8188e.o \
|
|
hal/HalPwrSeqCmd.o \
|
|
hal/Hal8188EPwrSeq.o \
|
|
hal/Hal8188ERateAdaptive.o\
|
|
hal/hal_intf.o \
|
|
hal/hal_com.o \
|
|
hal/odm.o \
|
|
hal/odm_debug.o \
|
|
hal/odm_interface.o \
|
|
hal/odm_HWConfig.o \
|
|
hal/odm_RegConfig8188E.o\
|
|
hal/odm_RTL8188E.o \
|
|
hal/rtl8188e_cmd.o \
|
|
hal/rtl8188e_dm.o \
|
|
hal/rtl8188e_hal_init.o \
|
|
hal/rtl8188e_mp.o \
|
|
hal/rtl8188e_phycfg.o \
|
|
hal/rtl8188e_rf6052.o \
|
|
hal/rtl8188e_rxdesc.o \
|
|
hal/rtl8188e_sreset.o \
|
|
hal/rtl8188e_xmit.o \
|
|
hal/rtl8188eu_led.o \
|
|
hal/rtl8188eu_recv.o \
|
|
hal/rtl8188eu_xmit.o \
|
|
hal/usb_halinit.o \
|
|
hal/usb_ops_linux.o
|
|
|
|
RTL871X = rtl8188e
|
|
|
|
HCI_NAME = usb
|
|
|
|
_OS_INTFS_FILES := \
|
|
os_dep/ioctl_linux.o \
|
|
os_dep/mlme_linux.o \
|
|
os_dep/os_intfs.o \
|
|
os_dep/osdep_service.o \
|
|
os_dep/recv_linux.o \
|
|
os_dep/rtw_android.o \
|
|
os_dep/usb_intf.o \
|
|
os_dep/usb_ops_linux.o \
|
|
os_dep/xmit_linux.o
|
|
|
|
|
|
|
|
|
|
_HAL_INTFS_FILES += $(OUTSRC_FILES)
|
|
|
|
|
|
ifeq ($(CONFIG_AUTOCFG_CP), y)
|
|
|
|
$(shell cp $(TopDIR)/autoconf_rtl8188e_usb_linux.h $(TopDIR)/include/autoconf.h)
|
|
endif
|
|
|
|
ifeq ($(CONFIG_BT_COEXIST), y)
|
|
EXTRA_CFLAGS += -DCONFIG_BT_COEXIST
|
|
endif
|
|
|
|
ifeq ($(CONFIG_WOWLAN), y)
|
|
EXTRA_CFLAGS += -DCONFIG_WOWLAN
|
|
endif
|
|
|
|
SUBARCH := $(shell uname -m | sed -e "s/i.86/i386/; s/ppc.*/powerpc/; s/armv.l/arm/; s/aarch64/arm64/;")
|
|
|
|
ARCH ?= $(SUBARCH)
|
|
CROSS_COMPILE ?=
|
|
KVER ?= $(if $(KERNELRELEASE),$(KERNELRELEASE),$(shell uname -r))
|
|
KSRC ?= $(if $(KERNEL_SRC),$(KERNEL_SRC),/lib/modules/$(KVER)/build)
|
|
MODDESTDIR := /lib/modules/$(KVER)/kernel/drivers/staging/r8188eu/
|
|
INSTALL_PREFIX :=
|
|
|
|
ifneq ($(KERNELRELEASE),)
|
|
|
|
rtk_core := \
|
|
core/rtw_ap.o \
|
|
core/rtw_br_ext.o \
|
|
core/rtw_cmd.o \
|
|
core/rtw_debug.o \
|
|
core/rtw_efuse.o \
|
|
core/rtw_ieee80211.o \
|
|
core/rtw_io.o \
|
|
core/rtw_ioctl_set.o \
|
|
core/rtw_iol.o \
|
|
core/rtw_led.o \
|
|
core/rtw_mlme.o \
|
|
core/rtw_mlme_ext.o \
|
|
core/rtw_mp.o \
|
|
core/rtw_mp_ioctl.o \
|
|
core/rtw_pwrctrl.o \
|
|
core/rtw_p2p.o \
|
|
core/rtw_recv.o \
|
|
core/rtw_rf.o \
|
|
core/rtw_security.o \
|
|
core/rtw_sreset.o \
|
|
core/rtw_sta_mgt.o \
|
|
core/rtw_wlan_util.o \
|
|
core/rtw_xmit.o
|
|
|
|
8188eu-y += $(rtk_core)
|
|
|
|
8188eu-y += $(_HAL_INTFS_FILES)
|
|
|
|
8188eu-y += $(_OS_INTFS_FILES)
|
|
|
|
obj-$(CONFIG_RTL8188EU) := 8188eu.o
|
|
|
|
else
|
|
|
|
export CONFIG_RTL8188EU = m
|
|
|
|
obj-$(CONFIG_RTL8188EU) := 8188eu.o
|
|
|
|
endif
|
|
|
|
all: test modules
|
|
|
|
test:
|
|
@if [ ! -e ./.git -a ! -e ./.sl ] ; then echo $(MSG); exit 1; fi;
|
|
|
|
modules:
|
|
$(MAKE) ARCH=$(ARCH) CROSS_COMPILE=$(CROSS_COMPILE) -C $(KSRC) M=$(shell pwd) modules
|
|
|
|
strip:
|
|
$(CROSS_COMPILE)strip 8188eu.ko --strip-unneeded
|
|
|
|
install:
|
|
@mkdir -p $(MODDESTDIR)
|
|
install -p -m 644 8188eu.ko $(MODDESTDIR)
|
|
@if [ -a /lib/modules/$(KVER)/kernel/drivers/staging/rtl8188eu/r8188eu.ko ] ; then modprobe -r r8188eu; fi;
|
|
@echo "blacklist r8188eu" > /etc/modprobe.d/50-8188eu.conf
|
|
/sbin/depmod -a ${KVER}
|
|
@mkdir -p /lib/firmware/rtlwifi
|
|
cp rtl8188eufw.bin /lib/firmware/rtlwifi/.
|
|
|
|
modules_install:
|
|
$(MAKE) -C $(KSRC) M=$(shell pwd) modules_install
|
|
|
|
uninstall:
|
|
rm -f $(MODDESTDIR)/8188eu.ko
|
|
/sbin/depmod -a ${KVER}
|
|
@rm /etc/modprobe.d/50-8188eu.conf
|
|
|
|
config_r:
|
|
@echo "make config"
|
|
/bin/bash script/Configure script/config.in
|
|
|
|
.PHONY: modules clean clean_odm-8192c
|
|
|
|
clean_odm-8192c:
|
|
cd hal/OUTSRC/rtl8192c ; rm -fr *.mod.c *.mod *.o .*.cmd *.ko
|
|
|
|
clean: $(clean_more)
|
|
rm -fr *.mod.c *.mod *.o .*.cmd *.ko *~
|
|
rm -fr .tmp_versions
|
|
rm -fr Module.symvers ; rm -fr Module.markers ; rm -fr modules.order
|
|
cd core ; rm -fr *.mod.c *.mod *.o .*.cmd *.ko
|
|
cd hal ; rm -fr *.mod.c *.mod *.o .*.cmd *.ko
|
|
cd os_dep ; rm -fr *.mod.c *.mod *.o .*.cmd *.ko
|