Commit 124e5ca6 authored by Russell King's avatar Russell King

[ARM] Add .data.nosave section into vmlinux.lds.S file.

parent ff26b5cb
...@@ -102,6 +102,12 @@ SECTIONS ...@@ -102,6 +102,12 @@ SECTIONS
*/ */
*(.init.task) *(.init.task)
. = ALIGN(4096);
__nosave_begin = .;
*(.data.nosave)
. = ALIGN(4096);
__nosave_end = .;
/* /*
* then the cacheline aligned data * then the cacheline aligned 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