Commit 9f158e80 authored by Paul Mackerras's avatar Paul Mackerras

PPC32: Add the kallsyms section to arch/ppc/vmlinux.lds.S.

parent 8070dca4
......@@ -147,6 +147,10 @@ SECTIONS
. = ALIGN(4096);
__openfirmware_end = .;
__start___kallsyms = .; /* All kernel symbols */
__kallsyms : { *(__kallsyms) }
__stop___kallsyms = .;
__bss_start = .;
.bss :
{
......@@ -155,6 +159,8 @@ SECTIONS
*(.bss)
*(COMMON)
}
__bss_stop = .;
_end = . ;
PROVIDE (end = .);
}
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