-
Notifications
You must be signed in to change notification settings - Fork 223
/
Makefile
281 lines (240 loc) · 10.3 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
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
#
# This is a project Makefile. It is assumed the directory this Makefile resides in is a
# project subdirectory.
#
EXTRA_COMPONENT_DIRS := $(abspath $(dir $(firstword $(MAKEFILE_LIST))))/components/lua/modules
BOARD_TYPE_REQUIRED := 1
VERSION_CHECK_REQUIRED := 1
BOARD_USB_VID_PID :=
BOARD_USB_EXP :=
ifneq (,$(findstring clean,$(MAKECMDGOALS)))
BOARD_TYPE_REQUIRED := 0
VERSION_CHECK_REQUIRED := 0
endif
ifneq (,$(findstring menuconfig,$(MAKECMDGOALS)))
BOARD_TYPE_REQUIRED := 0
endif
ifeq ("$(SDKCONFIG_DEFAULTS)","sdkconfig.defaults")
BOARD_TYPE_REQUIRED := 0
endif
ifneq ("$(SDKCONFIG_DEFAULTS)","")
TMP := $(shell echo $(SDKCONFIG_DEFAULTS) > .board)
BOARD_USB_VID_PID := $(shell python boards/selection.py $(SDKCONFIG_DEFAULTS) usb_vid_pid)
BOARD_USB_EXP := $(shell python boards/selection.py $(SDKCONFIG_DEFAULTS) usb_port_exp)
BOARD_TYPE_REQUIRED := 0
override SDKCONFIG_DEFAULTS := boards/$(SDKCONFIG_DEFAULTS)
MAKECMDGOALS += defconfig
endif
ifneq (,$(findstring restore-idf,$(MAKECMDGOALS)))
BOARD_TYPE_REQUIRED := 0
VERSION_CHECK_REQUIRED := 0
MAKECMDGOALS += defconfig
endif
ifneq (,$(findstring upgrade-idf,$(MAKECMDGOALS)))
BOARD_TYPE_REQUIRED := 0
VERSION_CHECK_REQUIRED := 0
MAKECMDGOALS += defconfig
endif
# New line
define n
endef
# Use this esp-idf commit in build
CURRENT_IDF := cc9b06d4daa27c4c6555fa80b838b3471dd4128d
# Project name
PROJECT_NAME := lua_rtos
# Detect OS
UNAME := $(shell uname)
# Set the OS environment variable to build mkspiffs in windows
ifeq ("$(UNAME)", "Linux")
export OS = LINUX
else
ifeq ("$(UNAME)", "Darwin")
export OS = OSX
else
export OS = Windows_NT
endif
endif
# Lua RTOS has support for a lot of ESP32-based boards, but each board
# can have different configurations, such as the PIN MAP.
#
# This part ensures that the first time that Lua RTOS is build, the user specifies
# the board type with "make SDKCONFIG_DEFAULTS=board defconfig" or entering
# the board type through a keyboard option
ifeq ($(BOARD_TYPE_REQUIRED),1)
ifneq ("$(SDKCONFIG_DEFAULTS)","")
# If SDKCONFIG_DEFAULTS is specified check that the configuration exists
ifneq ("$(shell test -e boards/$(SDKCONFIG_DEFAULTS) && echo ex)","ex")
$(error "$(SDKCONFIG_DEFAULTS) does not exists")
endif
endif
# Check if sdkconfig file exists. If this file exists, means that at some point
# the user has set SDKCONFIG_DEFAULTS. If it don't exists, we ask the user to
# select a valid board and firmware to get the right sdkconfig file
ifneq ("$(shell test -e sdkconfig && echo ex)","ex")
# Select a board and firmware and get the sdkconfig file
BOARD_CONFIG := $(shell python boards/selection.py)
ifeq ("foo$(BOARD_CONFIG)","foo")
$(error "No sdkconfig file")
endif
# Check if sdkconfig file exists
ifneq ("$(shell test -e boards/$(BOARD_CONFIG) && echo ex)","ex")
$(error "Invalid board selection, boards/$(BOARD_CONFIG) doesn't exist")
else
override SDKCONFIG_DEFAULTS := boards/$(BOARD_CONFIG)
MAKECMDGOALS += defconfig
endif
TMP := $(shell echo $(BOARD_CONFIG) > .board)
BOARD_USB_VID_PID := $(shell python boards/selection.py $(BOARD_CONFIG) usb_vid_pid)
BOARD_USB_EXP := $(shell python boards/selection.py $(BOARD_CONFIG) usb_port_exp)
else
ifneq ("$(SDKCONFIG_DEFAULTS)","")
override SDKCONFIG_DEFAULTS := boards/$(SDKCONFIG_DEFAULTS)
endif
BOARD_CONFIG := $(shell cat .board)
BOARD_USB_VID_PID := $(shell python boards/selection.py $(BOARD_CONFIG) usb_vid_pid)
BOARD_USB_EXP := $(shell python boards/selection.py $(BOARD_CONFIG) usb_port_exp)
endif
$(info Using $(SDKCONFIG_DEFAULTS) sdkconfig file)
endif
# Although each board configuration has set the ESPTOOLPY_PORT variable in KConfig,
# the serial port name can vary for each build platform. This part, tries to find
# the serial port in which the board is connected inspecting the available serial
# ports, and matching the USB VID:PID, defined in the boards.json file with the
# USB VID:PID expected for the board.
ifneq ("foo$(BOARD_USB_VID_PID)","foo")
$(info Finding a serial port with USB VID:PID $(BOARD_USB_VID_PID) ...)
# Get all the available serial ports that corresponds to the board USB VID:PID
SERIAL_PORTS := $(shell python -m serial.tools.list_ports "$(BOARD_USB_VID_PID)" -q)
ifneq ("foo$(SERIAL_PORTS)","foo")
SERIAL_PORTS_FINDED := 0
SERIAL_PORT :=
ifneq ("foo$(BOARD_USB_EXP)","foo")
# Some boards, like ESP-WROVER-KIT mount dual USB2UART adapters, so we need to inspect
# the serial port device name to find the port. For example, ESP-WROVER-KIT exposes
# two serial ports: /dev/.....A (JTAG), and /dev/.....B (UART). To inspect the
# serial port device name, we use a regular expression defined in boards.json.
# Count how many serial port device names match with the regular expression
$(foreach USB_PORT,$(SERIAL_PORTS), \
$(if $(filter 1, $(shell python boards/test.py "$(BOARD_USB_EXP)" "$(USB_PORT)")), $(eval SERIAL_PORTS_FINDED=$(shell echo $$(($(SERIAL_PORTS_FINDED)+1))))) \
)
ifeq ("foo$(SERIAL_PORTS_FINDED)","foo1")
# Only one serial port matches, so use this port
$(foreach USB_PORT,$(SERIAL_PORTS), \
$(if $(filter 1, $(shell python boards/test.py "$(BOARD_USB_EXP)" "$(USB_PORT)")), $(eval SERIAL_PORT=$(shell echo $(USB_PORT)))) \
)
$(info Finded $(SERIAL_PORT))
ESPPORT ?= $(SERIAL_PORT)
else
# There are more that 1 matching, maybe 2 boards are connected, so use the defined in the board configuration
$(info 0 or more than 1 board attached, using the serial port defined in ESPTOOLPY_PORT)
endif
else
# There is no need to inspect the serial port device name
# Count how many serial port device names match with the regular expression
$(foreach USB_PORT,$(SERIAL_PORTS), \
$(eval SERIAL_PORTS_FINDED=$(shell echo $$(($(SERIAL_PORTS_FINDED)+1)))) \
)
ifeq ("foo$(SERIAL_PORTS_FINDED)","foo1")
# Only one serial port matches, so use this port
$(foreach USB_PORT,$(SERIAL_PORTS), \
$(eval SERIAL_PORT=$(shell echo $(USB_PORT))) \
)
$(info Finded $(SERIAL_PORT))
ESPPORT ?= $(SERIAL_PORT)
else
# There are more that 1 matching, maybe 2 boards are connected, so use the defined in the board configuration
$(info 0 or more than 1 board attached, using the serial port defined in ESPTOOLPY_PORT)
endif
endif
else
# No USB VID:PID defined in boards.json, so use the defined in the
# board configuration
$(info No serial ports defined in boards.json, using the serial port defined in ESPTOOLPY_PORT)
endif
endif
ifeq ("$(VERSION_CHECK_REQUIRED)","1")
# Check if esp-idf installation contains the required version to build Lua RTOS
ifeq ("$(shell cd $(IDF_PATH) && git log --pretty="%H" | grep $(CURRENT_IDF))","")
$(error Please, run "make upgrade-idf" before, to upgrade esp-idf to the version required by Lua RTOS)
endif
# Apply Lua RTOS patches
ifneq ("$(shell test -e $(IDF_PATH)/lua_rtos_patches && echo ex)","ex")
APPLY_PATCHES := 1
else
# Get previous hash of applyied patches
PREV_HASH := $(shell cat $(IDF_PATH)/lua_rtos_patches)
# Get current hash
ifeq ("$(UNAME)", "Linux")
CURR_HASH := $(shell cat components/sys/patches/*.patch | sha256sum)
else
CURR_HASH := $(shell cat components/sys/patches/*.patch | shasum -a 256 -p)
endif
ifneq ("$(PREV_HASH)","$(CURR_HASH)")
APPLY_PATCHES := 1
else
APPLY_PATCHES := 0
endif
endif
ifeq ("$(APPLY_PATCHES)","1")
$(info Reverting previous Lua RTOS esp-idf patches ...)
TMP := $(shell cd $(IDF_PATH) && git checkout -f .)
TMP := $(shell cd $(IDF_PATH) && git checkout -f $(CURRENT_IDF))
TMP := $(shell cd $(IDF_PATH) && git submodule update -f --init --recursive)
TMP := $(info Applying Lua RTOS esp-idf patches ...)
$(foreach PATCH,$(abspath $(wildcard components/sys/patches/*.patch)), \
$(info Applying patch $(PATCH)...); \
$(shell cd $(IDF_PATH) && git apply --whitespace=warn $(PATCH)) \
)
$(info Patches applied)
# Compute and save new hash
ifeq ("$(UNAME)", "Linux")
TMP := $(shell cat components/sys/patches/*.patch | sha256sum > $(IDF_PATH)/lua_rtos_patches)
else
TMP := $(shell cat components/sys/patches/*.patch | shasum -a 256 -p > $(IDF_PATH)/lua_rtos_patches)
endif
endif
endif
include $(IDF_PATH)/make/project.mk
ifneq ("foo$(PYTHON)", "foo")
include $(PROJECT_PATH)/make/part.mk
include $(PROJECT_PATH)/make/fs.mk
endif
clean: clean-adds restore-idf
ifdef TOOLCHAIN_COMMIT_DESC
ifneq ($(TOOLCHAIN_COMMIT_DESC), $(SUPPORTED_TOOLCHAIN_COMMIT_DESC))
$(info Toolchain version is not supported: $(TOOLCHAIN_COMMIT_DESC))
$(info Expected to see version: $(SUPPORTED_TOOLCHAIN_COMMIT_DESC))
$(info Please check ESP-IDF setup instructions and update the toolchain.)
$(error Aborting)
endif
ifeq (,$(findstring $(TOOLCHAIN_GCC_VER), $(SUPPORTED_TOOLCHAIN_GCC_VERSIONS)))
$(info Compiler version is not supported: $(TOOLCHAIN_GCC_VER))
$(info Expected to see version(s): $(SUPPORTED_TOOLCHAIN_GCC_VERSIONS))
$(info Please check ESP-IDF setup instructions and update the toolchain.)
$(error Aborting)
endif
endif # TOOLCHAIN_COMMIT_DESC
upgrade-idf: restore-idf
@cd $(IDF_PATH) && git pull
@cd $(IDF_PATH) && git submodule update -f --init --recursive
restore-idf:
@echo "Reverting previous Lua RTOS esp-idf patches ..."
ifeq ("$(shell test -e $(IDF_PATH)/lua_rtos_patches && echo ex)","ex")
@cd $(IDF_PATH) && git checkout -f .
@cd $(IDF_PATH) && git checkout -f master
@cd $(IDF_PATH) && git submodule update -f --init --recursive
@rm $(IDF_PATH)/lua_rtos_patches
endif
@rm -f sdkconfig || true
@rm -f sdkconfig.old || true
@rm -f sdkconfig.defaults || true
@rm -f .board || true
flash-args: partition_table_get_info blank_ota_data
@echo $(subst --port $(ESPPORT),, \
$(subst python /components/esptool_py/esptool/esptool.py,, \
$(subst $(IDF_PATH),, $(ESPTOOLPY_WRITE_FLASH))\
)\
) \
$(subst /build/, , $(subst /build/bootloader/,, $(subst $(PROJECT_PATH), , $(ESPTOOL_ALL_FLASH_ARGS))))
clean-adds:
@rm -f -r $(PROJECT_PATH)/build/*