提交 68abceef 编写于 作者: R Roman Zippel 提交者: Linus Torvalds

m68k: Put .bss at the end of the data section

Put .bss at the end of the data section
Signed-off-by: NRoman Zippel <zippel@linux-m68k.org>
Signed-off-by: NGeert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
上级 8fbbae65
......@@ -34,10 +34,10 @@ SECTIONS
CONSTRUCTORS
}
.bss : { *(.bss) } /* BSS */
. = ALIGN(16);
.data.cacheline_aligned : { *(.data.cacheline_aligned) } :data
.data.cacheline_aligned : { *(.data.cacheline_aligned) }
.bss : { *(.bss) } /* BSS */
_edata = .; /* End of data section */
......@@ -48,7 +48,7 @@ SECTIONS
_sinittext = .;
INIT_TEXT
_einittext = .;
}
} :data
.init.data : { INIT_DATA }
. = ALIGN(16);
__setup_start = .;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册