From patchwork Wed Oct 17 20:18:29 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tom Rini X-Patchwork-Id: 192139 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 45D4F2C008F for ; Thu, 18 Oct 2012 07:18:50 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id D4DA14A29F; Wed, 17 Oct 2012 22:18:46 +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 TX+q8uUrC4Gw; Wed, 17 Oct 2012 22:18:46 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id F39914A2AC; Wed, 17 Oct 2012 22:18:44 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 98FDF4A2AC for ; Wed, 17 Oct 2012 22:18:42 +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 iyJyvIc-PaDw for ; Wed, 17 Oct 2012 22:18:41 +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-pb0-f44.google.com (mail-pb0-f44.google.com [209.85.160.44]) by theia.denx.de (Postfix) with ESMTPS id 1368D4A29F for ; Wed, 17 Oct 2012 22:18:38 +0200 (CEST) Received: by mail-pb0-f44.google.com with SMTP id ro8so7544125pbb.3 for ; Wed, 17 Oct 2012 13:18:34 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:date:message-id:x-mailer; bh=Rs3kOgQPd+QYYDW7fmlLUbz1A8F9u3x5wyPvnB9Y98Y=; b=p9VUNPRTOhu0/RBdkvb7FY77JSXkW1wpSwRT3R9aiUNW7bfBHU2InYHjbFZVUTQFN1 19hSbcGZ5pqzOPfdthDS7Ub4wL7umXaLk1VC1Fae2+1ZmgLq9duYcUslyyxeFgqqXTsN 6/qiZCJ70jmdFaEgWttzyTkbK1XZY5p02DA533OtiJBzUVBno+Frm/IYStvwNN9WlJjC NIVQAgzst++OFz1fkdaBu3zd+lsWZCIx0092XCbEDVgI/dqViqFMt9Mlffg0X+9vRWFc 8K1e/crMKdPcuFrfSfyVZWY7XgGknwLj677/G8Hgz6M4L6k8pD6JYsj6zDgGnRn8SK5s X92g== Received: by 10.66.86.133 with SMTP id p5mr53349156paz.35.1350505113922; Wed, 17 Oct 2012 13:18:33 -0700 (PDT) Received: from localhost.localdomain (ip68-230-54-74.ph.ph.cox.net. [68.230.54.74]) by mx.google.com with ESMTPS id mt15sm3342207pbc.49.2012.10.17.13.18.31 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 17 Oct 2012 13:18:32 -0700 (PDT) From: Tom Rini To: u-boot@lists.denx.de Date: Wed, 17 Oct 2012 13:18:29 -0700 Message-Id: <1350505109-11103-1-git-send-email-trini@ti.com> X-Mailer: git-send-email 1.7.9.5 Cc: Michael Schwingen Subject: [U-Boot] [PATCH] actux[123]: Update linker script for ELDK 4.2 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 With ELDK4.2 libserial.o is too large to fit in the area before the environment. Swap in libinput instead which is a little smaller. Cc: Michael Schwingen Signed-off-by: Tom Rini --- board/actux1/u-boot.lds | 2 +- board/actux2/u-boot.lds | 2 +- board/actux3/u-boot.lds | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/board/actux1/u-boot.lds b/board/actux1/u-boot.lds index 9dbaa6f..63fd356 100644 --- a/board/actux1/u-boot.lds +++ b/board/actux1/u-boot.lds @@ -34,7 +34,7 @@ SECTIONS net/libnet.o(.text*) board/actux1/libactux1.o(.text*) arch/arm/cpu/ixp/libixp.o(.text*) - drivers/serial/libserial.o(.text*) + drivers/input/libinput.o(.text*) . = env_offset; common/env_embedded.o(.ppcenv) diff --git a/board/actux2/u-boot.lds b/board/actux2/u-boot.lds index 3575ed9..9885d06 100644 --- a/board/actux2/u-boot.lds +++ b/board/actux2/u-boot.lds @@ -34,7 +34,7 @@ SECTIONS net/libnet.o(.text*) board/actux2/libactux2.o(.text*) arch/arm/cpu/ixp/libixp.o(.text*) - drivers/serial/libserial.o(.text*) + drivers/input/libinput.o(.text*) . = env_offset; common/env_embedded.o(.ppcenv) diff --git a/board/actux3/u-boot.lds b/board/actux3/u-boot.lds index 35aab29..4a1c75a 100644 --- a/board/actux3/u-boot.lds +++ b/board/actux3/u-boot.lds @@ -34,7 +34,7 @@ SECTIONS net/libnet.o(.text*) board/actux3/libactux3.o(.text*) arch/arm/cpu/ixp/libixp.o(.text*) - drivers/serial/libserial.o(.text*) + drivers/input/libinput.o(.text*) . = env_offset; common/env_embedded.o(.ppcenv)