2016-08-17 15:08:22 +00:00
|
|
|
#
|
2016-11-10 02:20:55 +00:00
|
|
|
# Main bootloader Makefile.
|
2016-08-17 15:08:22 +00:00
|
|
|
#
|
2016-11-10 02:20:55 +00: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 15:08:22 +00:00
|
|
|
#
|
|
|
|
|
2017-01-08 19:08:24 +00:00
|
|
|
LINKER_SCRIPTS := \
|
|
|
|
esp32.bootloader.ld \
|
|
|
|
$(IDF_PATH)/components/esp32/ld/esp32.rom.ld \
|
2017-07-20 08:26:35 +00:00
|
|
|
$(IDF_PATH)/components/esp32/ld/esp32.rom.spiram_incompatible_fns.ld \
|
2017-01-30 03:29:50 +00:00
|
|
|
$(IDF_PATH)/components/esp32/ld/esp32.peripherals.ld \
|
2017-01-08 19:08:24 +00:00
|
|
|
esp32.bootloader.rom.ld
|
2016-08-17 15:08:22 +00:00
|
|
|
|
2017-03-09 07:29:00 +00:00
|
|
|
ifndef CONFIG_SPI_FLASH_ROM_DRIVER_PATCH
|
|
|
|
LINKER_SCRIPTS += $(IDF_PATH)/components/esp32/ld/esp32.rom.spiflash.ld
|
|
|
|
endif
|
|
|
|
|
2017-06-23 04:08:01 +00:00
|
|
|
COMPONENT_ADD_LDFLAGS += -L $(COMPONENT_PATH) $(addprefix -T ,$(LINKER_SCRIPTS))
|
2016-12-12 04:54:30 +00:00
|
|
|
|
|
|
|
COMPONENT_ADD_LINKER_DEPS := $(LINKER_SCRIPTS)
|