cactus: Fix base address in linkerscript

This helps debugging as the elf file contains the base address of the
image so it doesn't have to be specified when loading the debug symbols.

Change-Id: Ie9dcbce3d1b3d24ff587bd9daa1839b948e98f99
Signed-off-by: Antonio Nino Diaz <antonio.ninodiaz@arm.com>
diff --git a/spm/cactus/cactus.ld.S b/spm/cactus/cactus.ld.S
index 58553ac..a3d8e65 100644
--- a/spm/cactus/cactus.ld.S
+++ b/spm/cactus/cactus.ld.S
@@ -14,6 +14,8 @@
 
 SECTIONS
 {
+    . = CACTUS_IMAGE_BASE;
+
     ASSERT(. == ALIGN(PAGE_SIZE),
            "TEXT_START address is not aligned to PAGE_SIZE.")