blob: d542ae2aac13a3c1df5cc3f580dc455d3ab8ce00 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
diff --git a/rsi/Makefile b/rsi/Makefile
index 0c610f8..ad0caaa 100644
--- a/rsi/Makefile
+++ b/rsi/Makefile
@@ -29,7 +29,7 @@ KERNELDIR=/lib/modules/$(KERNELRELEASE)/build
#CONFIG_RSI_P2P=y
# Uncomment below line for using Concurrent mode
-#CONFIG_STA_PLUS_AP=y
+CONFIG_STA_PLUS_AP=y
# Uncomment below line for platforms with no SDIO multiblock support
#CONFIG_RSI_NO_SDIO_MULTIBLOCK=y
@@ -162,19 +162,24 @@ ifeq ($(OFFLOAD_SCAN_TO_DEVICE), y)
EXTRA_CFLAGS += -DOFFLOAD_SCAN_TO_DEVICE
endif
-obj-m := rsi_sdio.o rsi_usb.o rsi_91x.o
+obj-m := rsi_sdio.o rsi_usb_sta_ap.o rsi_91x_sta_ap.o
rsi_sdio-objs := $(COMMON_SDIO_OBJS)
-rsi_usb-objs := $(COMMON_USB_OBJS)
-rsi_91x-objs := $(RSI_91X_OBJS)
+rsi_usb_sta_ap-objs := $(COMMON_USB_OBJS)
+rsi_91x_sta_ap-objs := $(RSI_91X_OBJS)
all:
+ @echo env is:
+ env
@echo -e "\033[32mCompiling RSI drivers...\033[0m"
make -C$(KERNELDIR)/ M=$(PWD) modules
chmod 777 start_rs9116.sh
chmod 777 osd_common_insert.sh
- make CC="$(CC)" ROOT_DIR=$(ROOT_DIR) -C $(PWD)/apps
+ # make CC="$(CC)" ROOT_DIR=$(ROOT_DIR) -C $(PWD)/apps
@echo -e "\033[32mCompilation done SUCCESSFULLY\033[0m"
+modules_install:
+ $(MAKE) -C $(KERNELDIR) M=$(PWD) modules_install
+
clean:
make -C$(KERNELDIR)/ M=$(PWD) clean
@find . -name 'receive' | xargs rm -rf
|