From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mx1.redhat.com ([209.132.183.28]:1418 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754638Ab0G2JK2 (ORCPT ); Thu, 29 Jul 2010 05:10:28 -0400 From: David Howells In-Reply-To: <201007290324.36745.vda.linux@googlemail.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> 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> Sender: linux-kbuild-owner@vger.kernel.org List-ID: 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 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