From patchwork Sun May 1 16:56:06 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: seedshope X-Patchwork-Id: 93569 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 C718CB6F62 for ; Mon, 2 May 2011 03:03:30 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id EEE9228142; Sun, 1 May 2011 19:03:27 +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 w+rC40OCaf0H; Sun, 1 May 2011 19:03:27 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 560F82813D; Sun, 1 May 2011 19:03:26 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 5EEBE2810A for ; Sun, 1 May 2011 19:03:23 +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 2SG3J+R9sk-S for ; Sun, 1 May 2011 19:03:22 +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-pz0-f44.google.com (mail-pz0-f44.google.com [209.85.210.44]) by theia.denx.de (Postfix) with ESMTPS id 094B7280D5 for ; Sun, 1 May 2011 19:03:20 +0200 (CEST) Received: by pzk5 with SMTP id 5so3066577pzk.3 for ; Sun, 01 May 2011 10:03:18 -0700 (PDT) Received: by 10.68.56.102 with SMTP id z6mr8074486pbp.485.1304268974675; Sun, 01 May 2011 09:56:14 -0700 (PDT) Received: from localhost.localdomain ([221.221.24.66]) by mx.google.com with ESMTPS id i7sm3253681pbs.19.2011.05.01.09.56.12 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 01 May 2011 09:56:14 -0700 (PDT) From: seedshope To: Minkyu Kang Date: Mon, 2 May 2011 00:56:06 +0800 Message-Id: <1304268966-25640-1-git-send-email-bocui107@gmail.com> X-Mailer: git-send-email 1.7.1 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)