From patchwork Sun May 1 17:05:37 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: seedshope X-Patchwork-Id: 93570 X-Patchwork-Delegate: promsoft@gmail.com 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 F0394B6FB8 for ; Mon, 2 May 2011 03:06:06 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 4CC8F2814C; Sun, 1 May 2011 19:06:01 +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 URk1IHNWivkV; Sun, 1 May 2011 19:06:01 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 3F6FE28152; Sun, 1 May 2011 19:05:57 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 0D35528147 for ; Sun, 1 May 2011 19:05:54 +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 PNgLT0zOzC3C for ; Sun, 1 May 2011 19:05:53 +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-pw0-f44.google.com (mail-pw0-f44.google.com [209.85.160.44]) by theia.denx.de (Postfix) with ESMTPS id 5A14628146 for ; Sun, 1 May 2011 19:05:53 +0200 (CEST) Received: by pwi5 with SMTP id 5so2668655pwi.3 for ; Sun, 01 May 2011 10:05:51 -0700 (PDT) Received: by 10.68.58.226 with SMTP id u2mr879619pbq.459.1304269551650; Sun, 01 May 2011 10:05:51 -0700 (PDT) Received: from localhost.localdomain ([221.221.24.66]) by mx.google.com with ESMTPS id h4sm3261236pbj.2.2011.05.01.10.05.49 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 01 May 2011 10:05:50 -0700 (PDT) From: seedshope To: Minkyu Kang Date: Mon, 2 May 2011 01:05:37 +0800 Message-Id: <1304269537-25716-2-git-send-email-bocui107@gmail.com> X-Mailer: git-send-email 1.7.1 In-Reply-To: <1304269537-25716-1-git-send-email-bocui107@gmail.com> References: <1304269537-25716-1-git-send-email-bocui107@gmail.com> Cc: U-Boot@lists.denx.de Subject: [U-Boot] [PATCH] Add _end for the end of u-boot image for SMDK6400 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 From: seedshope Since we rename _end to __bss_end__, But we need add _end symbol for the end of u-boot image. Signed-off-by: Zhong Hongbo diff --git a/nand_spl/board/samsung/smdk6400/u-boot.lds b/nand_spl/board/samsung/smdk6400/u-boot.lds index 0153e0e..23c9913 100644 --- a/nand_spl/board/samsung/smdk6400/u-boot.lds +++ b/nand_spl/board/samsung/smdk6400/u-boot.lds @@ -67,6 +67,8 @@ SECTIONS *(.dynsym) } + _end = .; + .bss __rel_dyn_start (OVERLAY) : { __bss_start = .; *(.bss)