Commit 6ab95ee3 authored by Russell King's avatar Russell King

[ARM] Fix SECURITY_INIT in linker script.

SECURITY_INIT doesn't work when it is placed inside an output section.
Use our own version instead.
parent a641b91f
......@@ -53,7 +53,9 @@ SECTIONS
__con_initcall_start = .;
*(.con_initcall.init)
__con_initcall_end = .;
SECURITY_INIT
__security_initcall_start = .;
*(.security_initcall.init)
__security_initcall_end = .;
. = ALIGN(32);
__initramfs_start = .;
usr/built-in.o(.init.ramfs)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment