提交 05bf7d46 编写于 作者: M Michal Simek

microblaze: Add missing symbols for CONSTRUCTORS support

Commit b99b87f7 add CONSTRUCTOR
support to Linux but Microblaze not defined KERNEL_CTORS symbols
which are used with that patch.
This patch fixed it.
Signed-off-by: NMichal Simek <monstr@monstr.eu>
上级 20f54c49
......@@ -62,7 +62,8 @@ SECTIONS {
_sdata = . ;
.data ALIGN (4096) : { /* page aligned when MMU used - origin 0x4 */
*(.data)
DATA_DATA
CONSTRUCTORS
}
. = ALIGN(32);
.data.cacheline_aligned : { *(.data.cacheline_aligned) }
......@@ -98,13 +99,13 @@ SECTIONS {
. = ALIGN(4096);
.init.text : {
_sinittext = . ;
*(.init.text)
*(.exit.text)
*(.exit.data)
INIT_TEXT
_einittext = .;
}
.init.data : { *(.init.data) }
.init.data : {
INIT_DATA
}
. = ALIGN(4);
.init.ivt : {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册