From: Kenn H. <ke...@us...> - 2003-08-03 12:07:34
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/vax In directory sc8-pr-cvs1:/tmp/cvs-serv2185/arch/vax Modified Files: vmlinux.lds.S Log Message: 'typedef mmu_gather_t' becomes 'struct mmu_gather' in 2.5.57 Index: vmlinux.lds.S =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/arch/vax/vmlinux.lds.S,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- vmlinux.lds.S 10 Jul 2003 00:12:16 -0000 1.5 +++ vmlinux.lds.S 3 Aug 2003 12:07:31 -0000 1.6 @@ -46,6 +46,12 @@ __ksymtab : { *(__ksymtab) } __stop___ksymtab = .; + __gpl_ksymtab : { /* Kernel symbol table: GPL-only */ + __start___gpl_ksymtab = .; + *(__gpl_ksymtab) + __stop___gpl_ksymtab = .; + } + /* writeable */ .data : { /* Data */ *(.data) |