Update of /cvsroot/linuxsh/linux/arch/sh/kernel
In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv12846/arch/sh/kernel
Modified Files:
vmlinux.lds.S
Log Message:
Make PAGE_OFFSET configurable via CONFIG_PAGE_OFFSET, needed for nommu.
Index: vmlinux.lds.S
===================================================================
RCS file: /cvsroot/linuxsh/linux/arch/sh/kernel/vmlinux.lds.S,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- vmlinux.lds.S 17 Mar 2005 07:49:06 -0000 1.6
+++ vmlinux.lds.S 19 Jul 2006 14:33:16 -0000 1.7
@@ -14,7 +14,7 @@
ENTRY(_start)
SECTIONS
{
- . = 0x80000000 + CONFIG_MEMORY_START + CONFIG_ZERO_PAGE_OFFSET;
+ . = CONFIG_PAGE_OFFSET + CONFIG_MEMORY_START + CONFIG_ZERO_PAGE_OFFSET;
_text = .; /* Text and read-only data */
text = .; /* Text and read-only data */
.empty_zero_page : {
|