This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git
commit 17ec1d04c04c7f705cf26e4f02df16f3292b1a61 Author: Gustavo Henrique Nihei <gustavo.ni...@espressif.com> AuthorDate: Fri Sep 10 13:23:46 2021 -0300 tools/esp32: Remove unneeded variable initialization Signed-off-by: Gustavo Henrique Nihei <gustavo.ni...@espressif.com> --- tools/esp32/Config.mk | 2 -- 1 file changed, 2 deletions(-) diff --git a/tools/esp32/Config.mk b/tools/esp32/Config.mk index 7605778..00a3c87 100644 --- a/tools/esp32/Config.mk +++ b/tools/esp32/Config.mk @@ -66,10 +66,8 @@ ifdef ESPTOOL_BINDIR ifeq ($(CONFIG_ESP32_APP_FORMAT_LEGACY),y) BL_OFFSET := 0x1000 PT_OFFSET := 0x8000 - APP_OFFSET := 0x10000 BOOTLOADER := $(ESPTOOL_BINDIR)/bootloader-esp32.bin PARTITION_TABLE := $(ESPTOOL_BINDIR)/partition-table-esp32.bin - APP_IMAGE := nuttx.bin FLASH_BL := $(BL_OFFSET) $(BOOTLOADER) FLASH_PT := $(PT_OFFSET) $(PARTITION_TABLE) ESPTOOL_BINS := $(FLASH_BL) $(FLASH_PT)