m68knommu: fix missing linker segments
Recent changes to linker segments that hold per-cpu data broke linking for m68knommu targets: LD vmlinux /usr/local/bin/m68k-uclinux-ld.real: error: no memory region specified for loadable section `.data..shared_aligned' Add missing segments into the m68knommu linker script. Signed-off-by: Greg Ungerer <gerg@uclinux.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
1e72910e24
commit
e6ba59bcae
1 changed files with 2 additions and 0 deletions
|
@ -150,6 +150,8 @@ SECTIONS {
|
||||||
_sdata = . ;
|
_sdata = . ;
|
||||||
DATA_DATA
|
DATA_DATA
|
||||||
CACHELINE_ALIGNED_DATA(32)
|
CACHELINE_ALIGNED_DATA(32)
|
||||||
|
PAGE_ALIGNED_DATA(PAGE_SIZE)
|
||||||
|
*(.data..shared_aligned)
|
||||||
INIT_TASK_DATA(THREAD_SIZE)
|
INIT_TASK_DATA(THREAD_SIZE)
|
||||||
_edata = . ;
|
_edata = . ;
|
||||||
} > DATA
|
} > DATA
|
||||||
|
|
Loading…
Reference in a new issue