Commit a14f5e4f authored by Greg Ungerer's avatar Greg Ungerer

m68knommu: fix missing .data.cacheline_aligned section

Add a .data.cacheline_aligned section to the data segment.
Signed-off-by: default avatarGreg Ungerer <gerg@uclinux.org>
parent 592578a1
...@@ -147,6 +147,8 @@ SECTIONS { ...@@ -147,6 +147,8 @@ SECTIONS {
. = ALIGN(4); . = ALIGN(4);
_sdata = . ; _sdata = . ;
DATA_DATA DATA_DATA
. = ALIGN(32);
*(.data.cacheline_aligned)
. = ALIGN(8192) ; . = ALIGN(8192) ;
*(.data.init_task) *(.data.init_task)
_edata = . ; _edata = . ;
......
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