diff options
author | Steven J. Magnani <steve@digidescorp.com> | 2010-04-10 07:03:37 +0400 |
---|---|---|
committer | Michal Simek <monstr@monstr.eu> | 2010-05-06 13:21:57 +0400 |
commit | 7a0248e819ddaf2c2f28e6edd287b90aa930702a (patch) | |
tree | b117abc994c27606a090e2f71f8b03e6bfe549b5 /arch/microblaze/kernel/vmlinux.lds.S | |
parent | e6d7961e5be0a259ba87411370f8be7f7da4c0f6 (diff) | |
download | linux-7a0248e819ddaf2c2f28e6edd287b90aa930702a.tar.xz |
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: Steven J. Magnani <steve@digidescorp.com>
Signed-off-by: Michal Simek <monstr@monstr.eu>
Diffstat (limited to 'arch/microblaze/kernel/vmlinux.lds.S')
-rw-r--r-- | arch/microblaze/kernel/vmlinux.lds.S | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/microblaze/kernel/vmlinux.lds.S b/arch/microblaze/kernel/vmlinux.lds.S index 5ef619aad634..db72d7124602 100644 --- a/arch/microblaze/kernel/vmlinux.lds.S +++ b/arch/microblaze/kernel/vmlinux.lds.S @@ -24,7 +24,8 @@ SECTIONS { .text : AT(ADDR(.text) - LOAD_OFFSET) { _text = . ; _stext = . ; - *(.text .text.*) + HEAD_TEXT + TEXT_TEXT *(.fixup) EXIT_TEXT EXIT_CALL |