From: Keith Owens <kaos@ocs.com.au>
To: torvalds@transmeta.com
Cc: linuxppc-dev@lists.linuxppc.org
Subject: 2.4.0-test5 ppc patch
Date: Thu, 03 Aug 2000 22:48:17 +1000 [thread overview]
Message-ID: <32155.965306897@ocs3.ocs-net> (raw)
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/
reply other threads:[~2000-08-03 12:48 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=32155.965306897@ocs3.ocs-net \
--to=kaos@ocs.com.au \
--cc=linuxppc-dev@lists.linuxppc.org \
--cc=torvalds@transmeta.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).