|
From: Kenn H. <ke...@us...> - 2004-09-28 08:49:02
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/vax/kernel In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16807/arch/vax/kernel Modified Files: vmlinux.lds.S Log Message: All early boot code should live at the very start of the kernel image Index: vmlinux.lds.S =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/arch/vax/kernel/vmlinux.lds.S,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- vmlinux.lds.S 19 Jul 2004 08:43:20 -0000 1.2 +++ vmlinux.lds.S 28 Sep 2004 08:48:52 -0000 1.3 @@ -23,9 +23,9 @@ .text : { /* boot code comes first. The fact that it is linked at 0x80100000 doesn't matter because it's all - hand-crafted position-independent code */ - *(.vaxboot) - *(.vaxbootlib) + position-independent code */ + *(.boot.text) + *(.boot.data) /* Kernel C code starts here */ *(.text) |