aboutsummaryrefslogtreecommitdiff
path: root/bl32
diff options
context:
space:
mode:
authorHeiko Stuebner <heiko@sntech.de>2019-04-11 15:26:07 +0200
committerHeiko Stuebner <heiko@sntech.de>2019-04-25 13:37:56 +0200
commit14e09cc42e95c716ed4eed73764d254052f985f0 (patch)
treeb28105f35d128d355dc03ade4c18048decab9741 /bl32
parentd4c98a1b20fb62deed3722252169651f5385ede1 (diff)
downloadtrusted-firmware-a-14e09cc42e95c716ed4eed73764d254052f985f0.tar.gz
sp_min: allow inclusion of a platform-specific linker script
Similar to bl31 allow sp_min to also include a platform-specific linker script. This allows for example to place specific code in other memories of the system, like resume code in sram, while the main tf-a lives in ddr. Signed-off-by: Heiko Stuebner <heiko@sntech.de> Change-Id: I67642f7bfca036b5d51eb0fa092b479a647a9cc1
Diffstat (limited to 'bl32')
-rw-r--r--bl32/sp_min/sp_min.ld.S3
1 files changed, 3 insertions, 0 deletions
diff --git a/bl32/sp_min/sp_min.ld.S b/bl32/sp_min/sp_min.ld.S
index 83b78600e0..4559903bf8 100644
--- a/bl32/sp_min/sp_min.ld.S
+++ b/bl32/sp_min/sp_min.ld.S
@@ -16,6 +16,9 @@ MEMORY {
RAM (rwx): ORIGIN = BL32_BASE, LENGTH = BL32_LIMIT - BL32_BASE
}
+#ifdef PLAT_SP_MIN_EXTRA_LD_SCRIPT
+#include <plat_sp_min.ld.S>
+#endif
SECTIONS
{