You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

22 lines
414 B

LD_DIR := $(STANDALONE_DIR)/make/ld
ifdef CONFIG_AARCH64_RAM_LD
LDSNAME ?= $(LD_DIR)/aarch64_ram.ld
endif
ifdef CONFIG_AARCH32_RAM_LD
LDSNAME ?= $(LD_DIR)/aarch32_ram.ld
endif
ifdef CONFIG_TARGET_AMP_MASTER
LDSNAME ?= $(LD_DIR)/aarch32_amp_master_ram.ld
endif
ifdef CONFIG_TARGET_AMP_SLAVE
LDSNAME ?= $(LD_DIR)/aarch32_amp_slave_ram.ld
endif
ifdef CONFIG_USER_DEFINED_LD
LDSNAME ?= $(EXT_LDSNAME)
endif