From: Kenn H. <ke...@us...> - 2003-06-26 22:13:33
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/vax In directory sc8-pr-cvs1:/tmp/cvs-serv3130 Modified Files: vmlinux.lds.S Log Message: New section name for the initramfs cpio archive Index: vmlinux.lds.S =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/arch/vax/vmlinux.lds.S,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- vmlinux.lds.S 18 May 2003 18:22:09 -0000 1.3 +++ vmlinux.lds.S 26 Jun 2003 22:13:09 -0000 1.4 @@ -78,9 +78,10 @@ } __initcall_end = .; - .init.ramfs ALIGN(4096): { + . = ALIGN(4096); + .init.ramfs : { __initramfs_start = .; - *(.init.initramfs) + *(.init.ramfs) __initramfs_end = .; } |