From patchwork Fri May 10 21:56:49 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Albert ARIBAUD X-Patchwork-Id: 243074 X-Patchwork-Delegate: albert.aribaud@free.fr Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from theia.denx.de (theia.denx.de [85.214.87.163]) by ozlabs.org (Postfix) with ESMTP id 7FABB2C00E2 for ; Sat, 11 May 2013 07:57:38 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id A06784A15C; Fri, 10 May 2013 23:57:34 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at theia.denx.de Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 3JTDdMmck2X1; Fri, 10 May 2013 23:57:34 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id D70034A16E; Fri, 10 May 2013 23:57:29 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id B81B64A14F for ; Fri, 10 May 2013 23:57:26 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at theia.denx.de Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id LgPXoCxuHA5R for ; Fri, 10 May 2013 23:57:23 +0200 (CEST) X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 (only DNSBL check requested) Received: from smtp1-g21.free.fr (smtp1-g21.free.fr [212.27.42.1]) by theia.denx.de (Postfix) with ESMTP id F0BDE4A132 for ; Fri, 10 May 2013 23:57:22 +0200 (CEST) Received: from localhost.localdomain (unknown [IPv6:2a01:e35:2eb9:20:dc47:f303:31a9:e303]) (Authenticated sender: albert.aribaud) by smtp1-g21.free.fr (Postfix) with ESMTPSA id E28C794016A; Fri, 10 May 2013 23:57:15 +0200 (CEST) From: Albert ARIBAUD To: u-boot@lists.denx.de Date: Fri, 10 May 2013 23:56:49 +0200 Message-Id: <1368223012-17609-2-git-send-email-albert.u.boot@aribaud.net> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1368223012-17609-1-git-send-email-albert.u.boot@aribaud.net> References: <1368223012-17609-1-git-send-email-albert.u.boot@aribaud.net> Subject: [U-Boot] [PATCH 1/4] Rename arch/arm/lib/bss.c to sections.c X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.11 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: u-boot-bounces@lists.denx.de Errors-To: u-boot-bounces@lists.denx.de This file will contain symbols other than the BSS start and stop, so rename it for better accuracy. Signed-off-by: Albert ARIBAUD --- arch/arm/lib/Makefile | 2 +- arch/arm/lib/{bss.c => sections.c} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename arch/arm/lib/{bss.c => sections.c} (100%) diff --git a/arch/arm/lib/bss.c b/arch/arm/lib/sections.c similarity index 100% rename from arch/arm/lib/bss.c rename to arch/arm/lib/sections.c diff --git a/arch/arm/lib/Makefile b/arch/arm/lib/Makefile index 6ae161a..ac51cc1 100644 --- a/arch/arm/lib/Makefile +++ b/arch/arm/lib/Makefile @@ -42,7 +42,7 @@ ifndef CONFIG_SPL_BUILD ifndef CONFIG_SYS_GENERIC_BOARD COBJS-y += board.o endif -COBJS-y += bss.o +COBJS-y += sections.o COBJS-y += bootm.o COBJS-$(CONFIG_SYS_L2_PL310) += cache-pl310.o