From patchwork Thu Jun 1 10:47:37 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sekhar Nori X-Patchwork-Id: 769605 X-Patchwork-Delegate: trini@ti.com Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.denx.de (dione.denx.de [81.169.180.215]) by ozlabs.org (Postfix) with ESMTP id 3wdkZX6F4Zz9s9Y for ; Thu, 1 Jun 2017 20:47:48 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=ti.com header.i=@ti.com header.b="yU3tQyHD"; dkim-atps=neutral Received: by lists.denx.de (Postfix, from userid 105) id 9445EC21CB2; Thu, 1 Jun 2017 10:47:47 +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_NONE, 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 6658FC21C5B; Thu, 1 Jun 2017 10:47:44 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id 42EEEC21C5B; Thu, 1 Jun 2017 10:47:43 +0000 (UTC) Received: from fllnx210.ext.ti.com (fllnx210.ext.ti.com [198.47.19.17]) by lists.denx.de (Postfix) with ESMTPS id A360DC21C56 for ; Thu, 1 Jun 2017 10:47:42 +0000 (UTC) Received: from dflxv15.itg.ti.com ([128.247.5.124]) by fllnx210.ext.ti.com (8.15.1/8.15.1) with ESMTP id v51Aleoc023904; Thu, 1 Jun 2017 05:47:40 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ti.com; s=ti-com-17Q1; t=1496314060; bh=0W5yYb0udIwu7g7g+foWx5pgJBKwfUbM74t8oyWMq4c=; h=From:To:CC:Subject:Date; b=yU3tQyHDe1jHTiFMgg6QookWXqulCpWAiqbmZDAAcNpxd8Q81mHB+OPG0nTelKLld iiSoneNXgzlR9N/H4KZ7DAF+UNHcH7EqCPcHcppnM0ShPBUcryW+6igps+i/Q04LvZ yTnShmQq1AeeboY8SJCzGOxBF3Gk0VWIPDvEZCuA= Received: from DLEE71.ent.ti.com (dlee71.ent.ti.com [157.170.170.114]) by dflxv15.itg.ti.com (8.14.3/8.13.8) with ESMTP id v51Ale2O008253; Thu, 1 Jun 2017 05:47:40 -0500 Received: from dlep33.itg.ti.com (157.170.170.75) by DLEE71.ent.ti.com (157.170.170.114) with Microsoft SMTP Server id 14.3.294.0; Thu, 1 Jun 2017 05:47:39 -0500 Received: from psplinux063.india.ti.com (ileax41-snat.itg.ti.com [10.172.224.153]) by dlep33.itg.ti.com (8.14.3/8.13.8) with ESMTP id v51AlcZG004672; Thu, 1 Jun 2017 05:47:39 -0500 From: Sekhar Nori To: Tom Rini Date: Thu, 1 Jun 2017 16:17:37 +0530 Message-ID: <20170601104737.31223-1-nsekhar@ti.com> X-Mailer: git-send-email 2.9.0 MIME-Version: 1.0 Cc: U-Boot Mailing List Subject: [U-Boot] [PATCH] davinci: omapl138_lcdk: enable fatwrite support 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" When fat command is enabled, enable fatwrite too so U-Boot can create new files too. Signed-off-by: Sekhar Nori --- include/configs/omapl138_lcdk.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/configs/omapl138_lcdk.h b/include/configs/omapl138_lcdk.h index 9db4eeb54edf..a5be773eed9d 100644 --- a/include/configs/omapl138_lcdk.h +++ b/include/configs/omapl138_lcdk.h @@ -303,6 +303,10 @@ #define CONFIG_CMD_UBIFS #endif +#ifdef CONFIG_CMD_FAT +#define CONFIG_FAT_WRITE +#endif + #if !defined(CONFIG_USE_NAND) && \ !defined(CONFIG_SYS_USE_NOR) && \ !defined(CONFIG_USE_SPIFLASH)