From patchwork Thu Dec 6 13:55:03 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Agner X-Patchwork-Id: 1008808 X-Patchwork-Delegate: sbabic@denx.de Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=lists.denx.de (client-ip=81.169.180.215; helo=lists.denx.de; envelope-from=u-boot-bounces@lists.denx.de; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=agner.ch Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=agner.ch header.i=@agner.ch header.b="MKUrdI+c"; dkim-atps=neutral Received: from lists.denx.de (dione.denx.de [81.169.180.215]) by ozlabs.org (Postfix) with ESMTP id 439cYY0DKNz9s7h for ; Fri, 7 Dec 2018 00:55:12 +1100 (AEDT) Received: by lists.denx.de (Postfix, from userid 105) id AC556C2262E; Thu, 6 Dec 2018 13:55:08 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on lists.denx.de X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=RCVD_IN_DNSWL_BLOCKED, SPF_HELO_PASS, T_DKIM_INVALID autolearn=unavailable autolearn_force=no version=3.4.0 Received: from lists.denx.de (localhost [IPv6:::1]) by lists.denx.de (Postfix) with ESMTP id C5A6BC2258B; Thu, 6 Dec 2018 13:55:06 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id A4A95C225D6; Thu, 6 Dec 2018 13:55:05 +0000 (UTC) Received: from mail.kmu-office.ch (mail.kmu-office.ch [178.209.48.109]) by lists.denx.de (Postfix) with ESMTPS id 56EFBC225AC for ; Thu, 6 Dec 2018 13:55:05 +0000 (UTC) Received: from trochilidae.toradex.int (unknown [46.140.72.82]) by mail.kmu-office.ch (Postfix) with ESMTPSA id E41815C145A; Thu, 6 Dec 2018 14:55:04 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=agner.ch; s=dkim; t=1544104505; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type: content-transfer-encoding:content-transfer-encoding:in-reply-to: references; bh=82Wt/jU0lUMZ8gtkILwXouHhQfkeisuaTRWdzJ/X6pI=; b=MKUrdI+cgPAGilNloU7xef+IiVgmFY2wEmcwZIo4S34UMraA71OFa2LOYDkOYzHJEWnYxr //h30hnSTs769ZY1QsFYMRynu4af4jHoDysuPCgX0G15bKzhGtxxVILYh0NWAXSmrZKeFj r8skskskiBbWd+bEC4xukg3nAK94ym4= From: Stefan Agner To: u-boot@lists.denx.de, lukma@denx.de, trini@konsulko.com Date: Thu, 6 Dec 2018 14:55:03 +0100 Message-Id: <20181206135504.6865-1-stefan@agner.ch> X-Mailer: git-send-email 2.19.2 MIME-Version: 1.0 Cc: Marcel Ziswiler , Stefan Agner , Max Krummenacher Subject: [U-Boot] [PATCH v1] board: toradex: colibri_vf: unset NFS and LOADS/B X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.18 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" From: Stefan Agner Safe some space by not selecting CMD_NFS and CMD_LOADS/B. Signed-off-by: Stefan Agner Reviewed-by: Lukasz Majewski --- configs/colibri_vf_defconfig | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configs/colibri_vf_defconfig b/configs/colibri_vf_defconfig index fb0578868d..4192501257 100644 --- a/configs/colibri_vf_defconfig +++ b/configs/colibri_vf_defconfig @@ -23,11 +23,14 @@ CONFIG_CMD_MEMTEST=y CONFIG_CMD_DFU=y CONFIG_CMD_FUSE=y CONFIG_CMD_GPIO=y +# CONFIG_CMD_LOADB is not set +# CONFIG_CMD_LOADS is not set CONFIG_CMD_MMC=y CONFIG_CMD_USB=y CONFIG_CMD_USB_MASS_STORAGE=y # CONFIG_CMD_SETEXPR is not set CONFIG_CMD_DHCP=y +# CONFIG_CMD_NFS is not set CONFIG_CMD_MII=y CONFIG_CMD_PING=y CONFIG_CMD_BMP=y