diff options
author | Marc Zyngier <marc.zyngier@arm.com> | 2014-07-12 14:24:02 +0100 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2014-07-28 17:07:23 +0200 |
commit | bf433afd60ce2ccd1bec3cf14150323be8272ac3 (patch) | |
tree | 1dd1eb0cd86852ac01e6ca5b39978a1358c123b5 /arch/arm/config.mk | |
parent | b726d22da9aed61462e36aa722fa4e6fd0aec9f1 (diff) | |
download | u-boot-bf433afd60ce2ccd1bec3cf14150323be8272ac3.tar.gz |
ARM: HYP/non-sec: add separate section for secure code
In anticipation of refactoring the HYP/non-secure code to run
from secure RAM, add a new linker section that will contain that
code.
Nothing is using it just yet.
Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
Acked-by: Ian Campbell <ijc@hellion.org.uk>
Diffstat (limited to 'arch/arm/config.mk')
-rw-r--r-- | arch/arm/config.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/config.mk b/arch/arm/config.mk index 5fa182536d..c3b8289dcf 100644 --- a/arch/arm/config.mk +++ b/arch/arm/config.mk @@ -113,7 +113,7 @@ endif ifdef CONFIG_ARM64 OBJCOPYFLAGS += -j .text -j .rodata -j .data -j .u_boot_list -j .rela.dyn else -OBJCOPYFLAGS += -j .text -j .rodata -j .hash -j .data -j .got.plt -j .u_boot_list -j .rel.dyn +OBJCOPYFLAGS += -j .text -j .secure_text -j .rodata -j .hash -j .data -j .got.plt -j .u_boot_list -j .rel.dyn endif ifdef CONFIG_OF_EMBED |