-
Notifications
You must be signed in to change notification settings - Fork 7
/
Makefile
207 lines (152 loc) · 4.28 KB
/
Makefile
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
SHELL=/bin/bash
-include $(BUILD_PATH)/.config
#
export CVIARCH_L := $(shell echo $(CVIARCH) | tr A-Z a-z)
#
export CHIP_ARCH_L := $(shell echo $(CHIP_ARCH) | tr A-Z a-z)
INTERDRV_PATH := interdrv
ifeq ($(KERNEL_DIR), )
$(info Please set KERNEL_DIR global variable!!)
endif
ifeq ($(INSTALL_DIR), )
INSTALL_DIR = ko
endif
CUR_DIR = $(PWD)
$(info ** [ KERNEL_DIR ] ** = $(KERNEL_DIR))
$(info ** [ INSTALL_DIR ] ** = $(INSTALL_DIR))
export INTRERDRV_FLAGS :=
ifeq ($(CONFIG_BUILD_FOR_DEBUG), y)
INTRERDRV_FLAGS += -DDRV_DEBUG -DDRV_TEST
endif
define MAKE_KO
( cd $(1) && $(MAKE) KERNEL_DIR=$(KERNEL_DIR) all -j$(shell nproc))
if [ $$(find $(1) -name '*.ko' | wc -l) -gt 0 ]; then \
cd $(1) && cp -f *.ko $(INSTALL_DIR); \
fi
endef
MAKE_EXT_KO_CP :=
ifneq (${FLASH_SIZE_SHRINK},y)
define MAKE_EXT_KO_CP
find $(1) -name '*.ko' -print -exec cp {} $(INSTALL_DIR)/3rd/ \;;
endef
endif
define MAKE_EXT_KO
( cd $(1) && $(MAKE) KERNEL_DIR=$(KERNEL_DIR) all -j$(shell nproc))
$(call MAKE_EXT_KO_CP, $(1))
endef
SUBDIRS = $(shell find ./interdrv -maxdepth 1 -mindepth 1 -type d | grep -v "git")
SUBDIRS += $(shell find ./extdrv -maxdepth 1 -mindepth 1 -type d | grep -v "git")
exclude_dirs = ./interdrv/include
SUBDIRS := $(filter-out $(exclude_dirs), $(SUBDIRS))
# prepare ko list
KO_LIST = base vcodec jpeg pwm rtc wdt tpu mon clock_cooling saradc wiegand wiegand-gpio
ifneq ($(CONFIG_USB_OSDRV_CVITEK_GADGET),)
KO_LIST += usb
endif
ifeq ($(CHIP_ARCH), $(filter $(CHIP_ARCH), CV183X CV182X))
KO_LIST += vip
KO_LIST += spacc
FB_DEP = vip
endif
ifeq ($(CVIARCH), $(filter $(CVIARCH), CV181X))
KO_LIST += sys vi snsr_i2c cif vpss dwa rgn vo rtos_cmdqu fast_image cvi_vc_drv ive #motor
BASE_DEP = sys
FB_DEP = vpss
else ifeq ($(CVIARCH), $(filter $(CVIARCH), CV180X))
KO_LIST += sys vi snsr_i2c cif vpss dwa rgn rtos_cmdqu fast_image cvi_vc_drv #motor
BASE_DEP = sys
FB_DEP = vpss
endif
ifeq (, ${CONFIG_NO_FB})
KO_LIST += fb
endif
$(info ** [ KO_LIST ] ** = $(KO_LIST))
OTHERS :=
ifeq (y, ${CONFIG_CP_EXT_WIRELESS})
KO_LIST += wireless
OTHERS += cp_ext_wireless
endif
ifeq (, ${CONFIG_NO_TP})
KO_LIST += tp
OTHERS += cp_ext_tp
endif
export CROSS_COMPILE=$(patsubst "%",%,$(CONFIG_CROSS_COMPILE_KERNEL))
export ARCH=$(patsubst "%",%,$(CONFIG_ARCH))
.PHONY : prepare clean all
all: prepare $(KO_LIST) $(OTHERS)
prepare:
@mkdir -p $(INSTALL_DIR)/3rd
# osdrv/interdrv
fb: base $(FB_DEP)
@$(call MAKE_KO, ${INTERDRV_PATH}/${@})
base: $(BASE_DEP)
@$(call MAKE_KO, ${INTERDRV_PATH}/${@})
vcodec:
@$(call MAKE_KO, ${INTERDRV_PATH}/${@})
usb:
@$(call MAKE_KO, ${INTERDRV_PATH}/${@})
fast_image: rtos_cmdqu
@$(call MAKE_KO, ${INTERDRV_PATH}/${@})
jpeg:
@$(call MAKE_KO, ${INTERDRV_PATH}/${@})
pwm:
@$(call MAKE_KO, ${INTERDRV_PATH}/${@})
wdt:
@$(call MAKE_KO, ${INTERDRV_PATH}/${@})
spacc:
@$(call MAKE_KO, ${INTERDRV_PATH}/${@})
rtc:
@$(call MAKE_KO, ${INTERDRV_PATH}/${@})
vip: base
@$(call MAKE_KO, ${INTERDRV_PATH}/${@})
tpu:
@$(call MAKE_KO, ${INTERDRV_PATH}/${@})
mon:
@$(call MAKE_KO, ${INTERDRV_PATH}/${@})
clock_cooling:
@$(call MAKE_KO, ${INTERDRV_PATH}/${@})
saradc:
@$(call MAKE_KO, ${INTERDRV_PATH}/${@})
wiegand:
@$(call MAKE_KO, ${INTERDRV_PATH}/${@})
vi: base
@$(call MAKE_KO, ${INTERDRV_PATH}/${@})
snsr_i2c: base
@$(call MAKE_KO, ${INTERDRV_PATH}/${@})
cif: base
@$(call MAKE_KO, ${INTERDRV_PATH}/${@})
sys:
@$(call MAKE_KO, ${INTERDRV_PATH}/${@})
vpss: base
@$(call MAKE_KO, ${INTERDRV_PATH}/${@})
dwa: base
@$(call MAKE_KO, ${INTERDRV_PATH}/${@})
rgn: base vpss
@$(call MAKE_KO, ${INTERDRV_PATH}/${@})
vo: base
@$(call MAKE_KO, ${INTERDRV_PATH}/${@})
ive:
@$(call MAKE_KO, ${INTERDRV_PATH}/${@})
cvi_vc_drv: sys base vcodec jpeg
@$(call MAKE_KO, ${INTERDRV_PATH}/${@})
rtos_cmdqu:
@$(call MAKE_KO, ${INTERDRV_PATH}/${@})
# osdrv/extdrv
tp:
@$(call MAKE_EXT_KO, extdrv/${@})
wireless:
@$(call MAKE_EXT_KO, extdrv/${@})
wiegand-gpio:
@$(call MAKE_EXT_KO, extdrv/${@})
gyro_i2c:
@$(call MAKE_EXT_KO, extdrv/${@})
motor:
@$(call MAKE_EXT_KO, extdrv/${@})
cp_ext_wireless:
@find extdrv/wireless -name '*.ko' -print -exec cp {} $(INSTALL_DIR)/3rd/ \;
cp_ext_tp:
@find extdrv/tp -name '*.ko' -print -exec cp {} $(INSTALL_DIR)/3rd/ \;
clean:
@for subdir in $(SUBDIRS); do cd $$subdir && $(MAKE) clean && cd $(CUR_DIR); done
@rm -f $(INSTALL_DIR)/*.ko
@rm -f $(INSTALL_DIR)/3rd/*.ko