2016-08-17 23:08:22 +08:00
|
|
|
#
|
2016-11-10 13:20:55 +11:00
|
|
|
# Main bootloader Makefile.
|
2016-08-17 23:08:22 +08:00
|
|
|
#
|
2016-11-10 13:20:55 +11: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 23:08:22 +08:00
|
|
|
#
|
|
|
|
|
|
2016-12-12 15:54:30 +11:00
|
|
|
LINKER_SCRIPTS := esp32.bootloader.ld $(IDF_PATH)/components/esp32/ld/esp32.rom.ld
|
2016-08-17 23:08:22 +08:00
|
|
|
|
2016-12-12 15:54:30 +11:00
|
|
|
COMPONENT_ADD_LDFLAGS := -L $(COMPONENT_PATH) -lmain $(addprefix -T ,$(LINKER_SCRIPTS))
|
|
|
|
|
|
|
|
|
|
COMPONENT_ADD_LINKER_DEPS := $(LINKER_SCRIPTS)
|