Commit 5a07f86f authored by Russell King's avatar Russell King

[ARM] Add per_cpu data area to linker script.

parent 23b7d672
...@@ -56,6 +56,10 @@ SECTIONS ...@@ -56,6 +56,10 @@ SECTIONS
__initramfs_start = .; __initramfs_start = .;
usr/built-in.o(.init.ramfs) usr/built-in.o(.init.ramfs)
__initramfs_end = .; __initramfs_end = .;
. = ALIGN(64);
__per_cpu_start = .;
*(.data.percpu)
__per_cpu_end = .;
#ifndef CONFIG_XIP_KERNEL #ifndef CONFIG_XIP_KERNEL
__init_begin = _stext; __init_begin = _stext;
*(.init.data) *(.init.data)
......
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