From patchwork Thu Oct 19 08:26:48 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Maxime Ripard X-Patchwork-Id: 827978 X-Patchwork-Delegate: trini@ti.com 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=) Received: from lists.denx.de (dione.denx.de [81.169.180.215]) by ozlabs.org (Postfix) with ESMTP id 3yHhs34gz3z9t48 for ; Thu, 19 Oct 2017 19:28:23 +1100 (AEDT) Received: by lists.denx.de (Postfix, from userid 105) id 6ADF4C21F14; Thu, 19 Oct 2017 08:27:39 +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=none 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 E6025C21F27; Thu, 19 Oct 2017 08:27:18 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id E4E24C21F22; Thu, 19 Oct 2017 08:27:10 +0000 (UTC) Received: from mail.free-electrons.com (mail.free-electrons.com [62.4.15.54]) by lists.denx.de (Postfix) with ESMTP id A4DBCC21F1A for ; Thu, 19 Oct 2017 08:27:06 +0000 (UTC) Received: by mail.free-electrons.com (Postfix, from userid 110) id 2EBBC20788; Thu, 19 Oct 2017 10:27:05 +0200 (CEST) Received: from localhost (unknown [185.94.189.190]) by mail.free-electrons.com (Postfix) with ESMTPSA id B690D2082B; Thu, 19 Oct 2017 10:26:54 +0200 (CEST) From: Maxime Ripard To: Tom Rini Date: Thu, 19 Oct 2017 10:26:48 +0200 Message-Id: <20171019082649.27819-3-maxime.ripard@free-electrons.com> X-Mailer: git-send-email 2.14.2 In-Reply-To: <20171019082649.27819-1-maxime.ripard@free-electrons.com> References: <20171019082649.27819-1-maxime.ripard@free-electrons.com> Cc: u-boot@lists.denx.de, Maxime Ripard , Jagan Teki Subject: [U-Boot] [PATCH 2/3] ARM: sunxi: Disable FAT write by default 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: , MIME-Version: 1.0 Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" Writing to FAT filesystems isn't a very widely used feature in U-Boot where most of the interaction would be reading from such a filesystem. Remove the imply to gain a bit of size in our binaries. Signed-off-by: Maxime Ripard --- arch/arm/Kconfig | 1 - 1 file changed, 1 deletion(-) diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index 0eaf54bd8ddb..2f67ccb9df30 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig @@ -700,7 +700,6 @@ config ARCH_SUNXI select USB if DISTRO_DEFAULTS select USE_TINY_PRINTF imply CMD_GPT - imply FAT_WRITE imply PRE_CONSOLE_BUFFER imply SPL_GPIO_SUPPORT imply SPL_LIBCOMMON_SUPPORT