Commit 7a0248e8 authored by Steven J. Magnani's avatar Steven J. Magnani Committed by Michal Simek

microblaze: Quiet section mismatch warnings

_start is located in .text, which causes mismatch warnings with
machine_early_init() and start_kernel() in .init.text.
Signed-off-by: default avatarSteven J. Magnani <steve@digidescorp.com>
Signed-off-by: default avatarMichal Simek <monstr@monstr.eu>
parent e6d7961e
...@@ -28,6 +28,7 @@ ...@@ -28,6 +28,7 @@
* for more details. * for more details.
*/ */
#include <linux/init.h>
#include <linux/linkage.h> #include <linux/linkage.h>
#include <asm/thread_info.h> #include <asm/thread_info.h>
#include <asm/page.h> #include <asm/page.h>
...@@ -49,7 +50,7 @@ swapper_pg_dir: ...@@ -49,7 +50,7 @@ swapper_pg_dir:
#endif /* CONFIG_MMU */ #endif /* CONFIG_MMU */
.text __HEAD
ENTRY(_start) ENTRY(_start)
#if CONFIG_KERNEL_BASE_ADDR == 0 #if CONFIG_KERNEL_BASE_ADDR == 0
brai TOPHYS(real_start) brai TOPHYS(real_start)
......
...@@ -24,7 +24,8 @@ SECTIONS { ...@@ -24,7 +24,8 @@ SECTIONS {
.text : AT(ADDR(.text) - LOAD_OFFSET) { .text : AT(ADDR(.text) - LOAD_OFFSET) {
_text = . ; _text = . ;
_stext = . ; _stext = . ;
*(.text .text.*) HEAD_TEXT
TEXT_TEXT
*(.fixup) *(.fixup)
EXIT_TEXT EXIT_TEXT
EXIT_CALL EXIT_CALL
......
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