2016-08-17 11:08:22 -04:00
|
|
|
#
|
2016-11-09 21:20:55 -05:00
|
|
|
# Main bootloader Makefile.
|
2016-08-17 11:08:22 -04:00
|
|
|
#
|
2016-11-09 21:20:55 -05:00
|
|
|
# This is basically the same as a component makefile, but in the case of the bootloader
|
|
|
|
# we pull in bootloader-specific linker arguments.
|
2016-08-17 11:08:22 -04:00
|
|
|
#
|
|
|
|
|
2017-01-08 14:08:24 -05:00
|
|
|
LINKER_SCRIPTS := \
|
|
|
|
esp32.bootloader.ld \
|
|
|
|
$(IDF_PATH)/components/esp32/ld/esp32.rom.ld \
|
|
|
|
esp32.bootloader.rom.ld
|
2016-08-17 11:08:22 -04:00
|
|
|
|
2016-12-11 23:54:30 -05:00
|
|
|
COMPONENT_ADD_LDFLAGS := -L $(COMPONENT_PATH) -lmain $(addprefix -T ,$(LINKER_SCRIPTS))
|
|
|
|
|
|
|
|
COMPONENT_ADD_LINKER_DEPS := $(LINKER_SCRIPTS)
|
2017-01-03 23:36:40 -05:00
|
|
|
|
|
|
|
ifdef IS_BOOTLOADER_BUILD
|
|
|
|
# following lines are a workaround to link librtc into the
|
|
|
|
# bootloader, until clock setting code is in a source-based esp-idf
|
|
|
|
# component. See also rtc_printf() in bootloader_start.c
|
2017-02-16 06:05:07 -05:00
|
|
|
COMPONENT_ADD_LDFLAGS += -L $(IDF_PATH)/components/esp32/lib/ -lrtc_clk -lrtc
|
2017-01-03 23:36:40 -05:00
|
|
|
COMPONENT_EXTRA_INCLUDES += $(IDF_PATH)/components/esp32/
|
|
|
|
endif
|