From patchwork Sun Apr 10 20:16:08 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sughosh Ganu X-Patchwork-Id: 90542 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 DD6C0B6F07 for ; Mon, 11 Apr 2011 06:16:48 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 37B47280BF; Sun, 10 Apr 2011 22:16:47 +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 LOcHAYZJV6br; Sun, 10 Apr 2011 22:16:47 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id D7831280C0; Sun, 10 Apr 2011 22:16:44 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 28C56280C0 for ; Sun, 10 Apr 2011 22:16:43 +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 1NztuWQaLXUk for ; Sun, 10 Apr 2011 22:16:42 +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 mail-iw0-f172.google.com (mail-iw0-f172.google.com [209.85.214.172]) by theia.denx.de (Postfix) with ESMTPS id 06AC9280BF for ; Sun, 10 Apr 2011 22:16:40 +0200 (CEST) Received: by iwn39 with SMTP id 39so5049822iwn.3 for ; Sun, 10 Apr 2011 13:16:39 -0700 (PDT) Received: by 10.42.97.69 with SMTP id m5mr6532457icn.116.1302466598869; Sun, 10 Apr 2011 13:16:38 -0700 (PDT) Received: from Hardy.localdomain6 ([122.172.29.175]) by mx.google.com with ESMTPS id xi12sm3433962icb.18.2011.04.10.13.16.35 (version=SSLv3 cipher=OTHER); Sun, 10 Apr 2011 13:16:37 -0700 (PDT) From: Sughosh Ganu To: u-boot@lists.denx.de Date: Mon, 11 Apr 2011 01:46:08 +0530 Message-Id: <1302466568-3180-1-git-send-email-urwithsughosh@gmail.com> X-Mailer: git-send-email 1.7.1 Subject: [U-Boot] [PATCH] Fix the issue of _end symbol not being found while building X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.9 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 Fix the nand_spl build for the hawkboard Signed-off-by: Sughosh Ganu --- nand_spl/board/davinci/da8xxevm/u-boot.lds | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/nand_spl/board/davinci/da8xxevm/u-boot.lds b/nand_spl/board/davinci/da8xxevm/u-boot.lds index c86117b..638ffd9 100644 --- a/nand_spl/board/davinci/da8xxevm/u-boot.lds +++ b/nand_spl/board/davinci/da8xxevm/u-boot.lds @@ -68,6 +68,8 @@ SECTIONS __got_end = .; + _end = .; + . = ALIGN(4); __bss_start = .; .bss : { *(.bss) }