We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b67badd + 5876cc6 commit 331600eCopy full SHA for 331600e
components/esp8266/Makefile.projbuild
@@ -86,7 +86,9 @@ ifeq ($(ESPTOOLPY_FLASHFREQ),"80m")
86
ESP8266_FREQDIV ?= 15
87
endif
88
89
-ESP8266_BINSCRIPT ?= python $(IDF_PATH)/tools/gen_appbin.py
+PYTHON ?= $(call dequote,$(CONFIG_PYTHON))
90
+
91
+ESP8266_BINSCRIPT ?= $(PYTHON) $(IDF_PATH)/tools/gen_appbin.py
92
93
ifdef DEBUG_BIN_PARAM
94
$(info mode:$(ESP8266_BOOTMODE) flash:$(ESP8266_FLASHMODE) freqdiv:$(ESP8266_FREQDIV), size_map:$(ESP8266_SIZEMAP))
@@ -110,7 +112,6 @@ CONFIG_ESPTOOLPY_COMPRESSED ?= y
110
112
CONFIG_ESPTOOLPY_BEFORE_RESET ?=y
111
113
CONFIG_ESPTOOLPY_AFTER_RESET ?=y
114
-PYTHON ?= $(call dequote,$(CONFIG_PYTHON))
115
ESPTOOLPY_SRC := $(IDF_PATH)/components/esptool_py/esptool/esptool.py
116
117
CHIP ?= esp8266
0 commit comments