mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-18 18:44:22 +00:00
Merge "fix(st): properly check LOADADDR" into integration
This commit is contained in:
commit
13f54450c9
1 changed files with 1 additions and 1 deletions
|
@ -72,7 +72,7 @@ tf-a-%.bin: tf-a-%.elf
|
|||
tf-a-%.stm32: tf-a-%.bin ${STM32_DEPS}
|
||||
@echo
|
||||
@echo "Generate $@"
|
||||
$(eval LOADADDR = $(shell cat $(@:.stm32=.map) | grep RAM | awk '{print $$2}'))
|
||||
$(eval LOADADDR = $(shell cat $(@:.stm32=.map) | grep '^RAM' | awk '{print $$2}'))
|
||||
$(eval ENTRY = $(shell cat $(@:.stm32=.map) | grep "__BL2_IMAGE_START" | awk '{print $$1}'))
|
||||
${Q}${STM32IMAGE} -s $< -d $@ \
|
||||
-l $(LOADADDR) -e ${ENTRY} \
|
||||
|
|
Loading…
Add table
Reference in a new issue