|
From: Jan-Benedict G. <jb...@us...> - 2004-09-29 10:39:32
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/vax/kernel In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30855 Modified Files: vmlinux.lds.S Log Message: - Add some variables around our match structures so we can find them:-) Index: vmlinux.lds.S =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/arch/vax/kernel/vmlinux.lds.S,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- vmlinux.lds.S 28 Sep 2004 08:48:52 -0000 1.3 +++ vmlinux.lds.S 29 Sep 2004 10:39:17 -0000 1.4 @@ -96,7 +96,9 @@ *(.initcall7.init) } __initcall_end = .; - + __init_vecmatch_start = .; + .init.vecmatch : { *(.init.vecmatch) } + __init_vecmatch_end = .; . = ALIGN(4096); .init.ramfs : { __initramfs_start = .; |