From patchwork Thu Nov 18 18:25:48 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Steve Sakoman X-Patchwork-Id: 72132 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 1305DB71AA for ; Fri, 19 Nov 2010 05:26:07 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 3FAAB2834D; Thu, 18 Nov 2010 19:26:04 +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 qsv0Q3ZR2wuF; Thu, 18 Nov 2010 19:26:03 +0100 (CET) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id E90C028346; Thu, 18 Nov 2010 19:26:02 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 7F7A628346 for ; Thu, 18 Nov 2010 19:26:00 +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 m5BikacTw5hb for ; Thu, 18 Nov 2010 19:25:57 +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-fx0-f44.google.com (mail-fx0-f44.google.com [209.85.161.44]) by theia.denx.de (Postfix) with ESMTP id 064D528344 for ; Thu, 18 Nov 2010 19:25:53 +0100 (CET) Received: by fxm3 with SMTP id 3so1922222fxm.3 for ; Thu, 18 Nov 2010 10:25:52 -0800 (PST) Received: by 10.223.79.65 with SMTP id o1mr886786fak.145.1290104752820; Thu, 18 Nov 2010 10:25:52 -0800 (PST) Received: from [192.168.0.210] (static-74-41-60-154.dsl1.pco.ca.frontiernet.net [74.41.60.154]) by mx.google.com with ESMTPS id f5sm245909fai.46.2010.11.18.10.25.51 (version=SSLv3 cipher=RC4-MD5); Thu, 18 Nov 2010 10:25:52 -0800 (PST) From: Steve Sakoman To: "u-boot@lists.denx.de" Date: Thu, 18 Nov 2010 10:25:48 -0800 Message-ID: <1290104748.2927.1594.camel@quadra> Mime-Version: 1.0 X-Mailer: Evolution 2.28.3 Subject: [U-Boot] [PATCH] OMAP4: Panda: 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: , Sender: u-boot-bounces@lists.denx.de Errors-To: u-boot-bounces@lists.denx.de This patch fixes the Panda 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: Steve Sakoman diff --git a/include/configs/omap4_panda.h b/include/configs/omap4_panda.h index e373fe0..8715ed7 100644 --- a/include/configs/omap4_panda.h +++ b/include/configs/omap4_panda.h @@ -134,6 +134,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 */