From patchwork Fri Apr 21 08:11:39 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alexey Brodkin X-Patchwork-Id: 753188 X-Patchwork-Delegate: alexey.brodkin@gmail.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 3w8T4d4ZsCz9s7B for ; Fri, 21 Apr 2017 18:12:49 +1000 (AEST) Received: by lists.denx.de (Postfix, from userid 105) id 32F8DC21C57; Fri, 21 Apr 2017 08:12:29 +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 269D3C21C51; Fri, 21 Apr 2017 08:12:27 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id 03095C21C7F; Fri, 21 Apr 2017 08:11:45 +0000 (UTC) Received: from smtprelay.synopsys.com (smtprelay4.synopsys.com [198.182.47.9]) by lists.denx.de (Postfix) with ESMTPS id A9058C21C68 for ; Fri, 21 Apr 2017 08:11:44 +0000 (UTC) Received: from mailhost.synopsys.com (mailhost2.synopsys.com [10.13.184.66]) by smtprelay.synopsys.com (Postfix) with ESMTP id 2F3D824E20EF for ; Fri, 21 Apr 2017 01:11:42 -0700 (PDT) Received: from mailhost.synopsys.com (localhost [127.0.0.1]) by mailhost.synopsys.com (Postfix) with ESMTP id 99947FE0; Fri, 21 Apr 2017 01:11:42 -0700 (PDT) Received: from abrodkin-7440l.internal.synopsys.com (abrodkin-7440l.internal.synopsys.com [10.121.8.101]) by mailhost.synopsys.com (Postfix) with ESMTP id B32F7FD4; Fri, 21 Apr 2017 01:11:41 -0700 (PDT) From: Alexey Brodkin To: u-boot@lists.denx.de Date: Fri, 21 Apr 2017 11:11:39 +0300 Message-Id: <1492762299-29907-1-git-send-email-abrodkin@synopsys.com> X-Mailer: git-send-email 2.7.4 Cc: Alexey Brodkin Subject: [U-Boot] [PATCH] axs10x: Add support of Ext2/4 FS 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" Those could be easily used on USB flash drives or on SD/MMC cards. Signed-off-by: Alexey Brodkin --- configs/axs101_defconfig | 3 +++ configs/axs103_defconfig | 3 +++ 2 files changed, 6 insertions(+) diff --git a/configs/axs101_defconfig b/configs/axs101_defconfig index b9ea1c6dea21..9d7dc7f7c053 100644 --- a/configs/axs101_defconfig +++ b/configs/axs101_defconfig @@ -13,6 +13,9 @@ CONFIG_CMD_USB=y # CONFIG_CMD_SETEXPR is not set CONFIG_CMD_DHCP=y CONFIG_CMD_PING=y +CONFIG_CMD_EXT2=y +CONFIG_CMD_EXT4=y +CONFIG_CMD_EXT4_WRITE=y CONFIG_CMD_FAT=y CONFIG_OF_CONTROL=y CONFIG_OF_EMBED=y diff --git a/configs/axs103_defconfig b/configs/axs103_defconfig index fb8e72ff6c9d..bcd4754eef7c 100644 --- a/configs/axs103_defconfig +++ b/configs/axs103_defconfig @@ -13,6 +13,9 @@ CONFIG_CMD_USB=y # CONFIG_CMD_SETEXPR is not set CONFIG_CMD_DHCP=y CONFIG_CMD_PING=y +CONFIG_CMD_EXT2=y +CONFIG_CMD_EXT4=y +CONFIG_CMD_EXT4_WRITE=y CONFIG_CMD_FAT=y CONFIG_OF_CONTROL=y CONFIG_OF_EMBED=y