summaryrefslogtreecommitdiff
path: root/arch/arm/config.mk
diff options
context:
space:
mode:
authorChen-Yu Tsai <wens@csie.org>2016-07-05 13:45:06 (GMT)
committerHans de Goede <hdegoede@redhat.com>2016-07-15 13:54:58 (GMT)
commita5aa7ff33a942ce8ea38006fd5225a800827bb2c (patch)
tree6f3580d752c60a439c1f7bd20f6046bb8155dc26 /arch/arm/config.mk
parentafc1f65f504324cd5f87a8cb480bebeb0c61e4e0 (diff)
downloadu-boot-a5aa7ff33a942ce8ea38006fd5225a800827bb2c.tar.xz
ARM: Add secure section for initialized data
The secure monitor may need to store global or static values within the secure section of memory, such as target PC or CPU power status. Signed-off-by: Chen-Yu Tsai <wens@csie.org> Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Diffstat (limited to 'arch/arm/config.mk')
-rw-r--r--arch/arm/config.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/config.mk b/arch/arm/config.mk
index 9a5a974..8f85862 100644
--- a/arch/arm/config.mk
+++ b/arch/arm/config.mk
@@ -120,8 +120,8 @@ endif
ifdef CONFIG_ARM64
OBJCOPYFLAGS += -j .text -j .rodata -j .data -j .u_boot_list -j .rela.dyn
else
-OBJCOPYFLAGS += -j .text -j .secure_text -j .rodata -j .hash -j .data -j \
- .got -j .got.plt -j .u_boot_list -j .rel.dyn
+OBJCOPYFLAGS += -j .text -j .secure_text -j .secure_data -j .rodata -j .hash \
+ -j .data -j .got -j .got.plt -j .u_boot_list -j .rel.dyn
endif
ifdef CONFIG_OF_EMBED