From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Howells Subject: Re: [PATCH 2/4] module linker script: coalesce function and data sections Date: Thu, 29 Jul 2010 10:09:57 +0100 Message-ID: <30881.1280394597@redhat.com> References: <201007290324.36745.vda.linux@googlemail.com> <1280360876-2571-3-git-send-email-vda.linux@googlemail.com> <1280360876-2571-1-git-send-email-vda.linux@googlemail.com> <29025.1280363105@redhat.com> Return-path: In-Reply-To: <201007290324.36745.vda.linux@googlemail.com> Sender: linux-parisc-owner@vger.kernel.org To: Denys Vlasenko Cc: dhowells@redhat.com, Michal Marek , linux-kbuild , linux-arch@vger.kernel.org, Parisc List , lkml , Sam Ravnborg , Tim Abbott , Tim Bird , James Bottomley , Matt Fleming , Arnd Bergmann , Anders Kaseorg , Andi Kleen , Stephen Rothwell List-Id: linux-arch.vger.kernel.org Denys Vlasenko wrote: > linker groups all similarly-named input sections into one output section > with the same name, if the name does not match any rule in the linker > script. > > Basically, it should work as if there is a rule: > > .sbss 0 : AT(0) { *(.sbss) } Okay, thanks. David