From patchwork Sun Nov 28 18:05:06 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Dirk Behme X-Patchwork-Id: 73346 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 7378D1007D1 for ; Mon, 29 Nov 2010 05:05:35 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 877652821F; Sun, 28 Nov 2010 19:05:33 +0100 (CET) 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 OEc6X5GsZH-i; Sun, 28 Nov 2010 19:05:33 +0100 (CET) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 21E682829D; Sun, 28 Nov 2010 19:05:31 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 1701E2829D for ; Sun, 28 Nov 2010 19:05:29 +0100 (CET) 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 zNZzfU26Gmac for ; Sun, 28 Nov 2010 19:05:27 +0100 (CET) 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-bw0-f44.google.com (mail-bw0-f44.google.com [209.85.214.44]) by theia.denx.de (Postfix) with ESMTP id 00F422821F for ; Sun, 28 Nov 2010 19:05:24 +0100 (CET) Received: by bwz12 with SMTP id 12so3316459bwz.3 for ; Sun, 28 Nov 2010 10:05:24 -0800 (PST) Received: by 10.204.52.75 with SMTP id h11mr3863163bkg.71.1290967523203; Sun, 28 Nov 2010 10:05:23 -0800 (PST) Received: from asterix.localdomain (p5B0432EE.dip.t-dialin.net [91.4.50.238]) by mx.google.com with ESMTPS id t10sm1582333bkj.4.2010.11.28.10.05.22 (version=SSLv3 cipher=RC4-MD5); Sun, 28 Nov 2010 10:05:22 -0800 (PST) From: Dirk Behme To: u-boot@lists.denx.de Date: Sun, 28 Nov 2010 19:05:06 +0100 Message-Id: <1290967506-19890-1-git-send-email-dirk.behme@gmail.com> X-Mailer: git-send-email 1.7.3.2 Subject: [U-Boot] OMAP4: SDP4430: Disable CMD_NFS 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: Dirk Behme This patch fixes the SDB4430 build after commit 6d8962e814c15807dd6ac5757904be2a02d187b8 by explicitly disabling CMD_NFS. >From the commit message for "Switch from archive libraries to partial linking": This commit reveals board configurations that exclude some features but include source files that depend these disabled features in the build, resulting in undefined symbols. Known such cases include: - disabling CMD_NET but not CMD_NFS; - enabling CONFIG_OF_LIBFDT but not CONFIG_QE. Signed-off-by: Dirk Behme --- This fix is identical to what was done for Panda: http://git.denx.de/?p=u-boot.git;a=commitdiff;h=8721e95b16024f0a92ccc1cd85aecf6672fe9499 include/configs/omap4_sdp4430.h | 1 + 1 file changed, 1 insertion(+) Index: u-boot.git/include/configs/omap4_sdp4430.h =================================================================== --- u-boot.git.orig/include/configs/omap4_sdp4430.h +++ u-boot.git/include/configs/omap4_sdp4430.h @@ -139,6 +139,7 @@ /* Disabled commands */ #undef CONFIG_CMD_NET +#undef CONFIG_CMD_NFS #undef CONFIG_CMD_FPGA /* FPGA configuration Support */ #undef CONFIG_CMD_IMLS /* List all found images */