* 2.4.0-test5 ppc patch
@ 2000-08-03 12:48 Keith Owens
0 siblings, 0 replies; only message in thread
From: Keith Owens @ 2000-08-03 12:48 UTC (permalink / raw)
To: torvalds; +Cc: linuxppc-dev
Linus, please apply, against 2.4.0-test5. arch/ppc/vmlinux.lds does
not explicitly define the .krstrtab and __ksymtab sections. It just so
happens that the linker does it anyway by some black magic, but it is
better to be consistent with other architectures and make the sections
explicit.
The lack of explicit sections makes it look like ppc does not support
modules.
Index: 0-test5.1/arch/ppc/vmlinux.lds
--- 0-test5.1/arch/ppc/vmlinux.lds Fri, 26 May 2000 13:10:01 +1000 kaos (linux-2.4/o/c/47_vmlinux.ld 1.1 644)
+++ 0-test5.1(w)/arch/ppc/vmlinux.lds Thu, 03 Aug 2000 22:44:03 +1000 kaos (linux-2.4/o/c/47_vmlinux.ld 1.1 644)
@@ -41,6 +41,7 @@
*(.rodata)
*(.rodata1)
}
+ .kstrtab : { *(.kstrtab) }
.fini : { *(.fini) } =0
.ctors : { *(.ctors) }
.dtors : { *(.dtors) }
@@ -63,6 +64,10 @@
__start___ex_table = .;
__ex_table : { *(__ex_table) }
__stop___ex_table = .;
+
+ __start___ksymtab = .; /* Kernel symbol table */
+ __ksymtab : { *(__ksymtab) }
+ __stop___ksymtab = .;
. = ALIGN(32);
.data.cacheline_aligned : { *(.data.cacheline_aligned) }
** Sent via the linuxppc-dev mail list. See http://lists.linuxppc.org/
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2000-08-03 12:48 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2000-08-03 12:48 2.4.0-test5 ppc patch Keith Owens
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).