diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2000-08-08 18:28:30 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2000-08-08 18:28:30 +0000 |
commit | 6a9366db547e958e8c9bf8e1c13bcea6cb2bf393 (patch) | |
tree | a4ace45b2343a439688f78d7edb6ee0f1d6d41cc /arch/ppc | |
parent | 02f8110d6a247d53b489b29eec8a35c85e713c6b (diff) |
Merge with Linux 2.4.0-test6-pre3.
Diffstat (limited to 'arch/ppc')
-rw-r--r-- | arch/ppc/vmlinux.lds | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/ppc/vmlinux.lds b/arch/ppc/vmlinux.lds index 7bfdc4efb..9ca864b72 100644 --- a/arch/ppc/vmlinux.lds +++ b/arch/ppc/vmlinux.lds @@ -41,6 +41,7 @@ SECTIONS *(.rodata) *(.rodata1) } + .kstrtab : { *(.kstrtab) } .fini : { *(.fini) } =0 .ctors : { *(.ctors) } .dtors : { *(.dtors) } @@ -64,6 +65,10 @@ SECTIONS __ex_table : { *(__ex_table) } __stop___ex_table = .; + __start___ksymtab = .; /* Kernel symbol table */ + __ksymtab : { *(__ksymtab) } + __stop___ksymtab = .; + . = ALIGN(32); .data.cacheline_aligned : { *(.data.cacheline_aligned) } |