From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from phobos.denx.de (phobos.denx.de [85.214.62.61]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 5616EC433EF for ; Fri, 18 Feb 2022 16:46:40 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 503E683903; Fri, 18 Feb 2022 17:46:37 +0100 (CET) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=kernel.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Authentication-Results: phobos.denx.de; dkim=pass (2048-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.b="rLmPYzBb"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id 4D7E783A92; Fri, 18 Feb 2022 17:46:35 +0100 (CET) Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id 0292983885 for ; Fri, 18 Feb 2022 17:46:31 +0100 (CET) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=kernel.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=kabel@kernel.org Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 5C59161F5B; Fri, 18 Feb 2022 16:46:30 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id BC010C340E9; Fri, 18 Feb 2022 16:46:28 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1645202789; bh=RjmxRIe9k+gGp7famqOYpxdPOE0+jraaIXZikjFltQU=; h=From:To:Cc:Subject:Date:From; b=rLmPYzBbzWutT1tc/En5kOjEeqxjgPPhOoUyva6HIQ5VH42JLW3BygSFdUva1TS8U g8D18jkYar/IQmIX48m0zjXf8jjAIUMa2gsgpmVnSOCy2TAn6gkVWx6nlGmLYOZqw9 FGtwFxyyvJ1GleamIXkhKnGIBewZnOuI24bR8suAD/bAqCcBh8qU6DKMCUOUbJRiYz dxyCff0r6H1YMf6i3dxZmuRcdzSEb3l72lSe05t7WXbsPoeSWvHPyx0sL0ngfKRLSA JeR6hHTWIaajQpu+2RJvgOU0D+lAp4t83+62daggQSl6Hgj1Yt9cR4n4weIC1Hd3em DtbFjbG3gh2vQ== From: =?UTF-8?q?Marek=20Beh=C3=BAn?= To: Stefan Roese Cc: pali@kernel.org, "u-boot@lists.denx.de" , =?UTF-8?q?Marek=20Beh=C3=BAn?= Subject: [PATCH u-boot-marvell] arm: mvebu: turris_omnia: Enable ext4 write support in defconfig Date: Fri, 18 Feb 2022 17:46:25 +0100 Message-Id: <20220218164625.26875-1-kabel@kernel.org> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.39 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" X-Virus-Scanned: clamav-milter 0.103.5 at phobos.denx.de X-Virus-Status: Clean From: Marek BehĂșn Enable ext4 write support in Turris Omnia's defconfig. Some users find it useful. Signed-off-by: Marek BehĂșn --- configs/turris_omnia_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/configs/turris_omnia_defconfig b/configs/turris_omnia_defconfig index 280dd55f00..5b1fdbfb2d 100644 --- a/configs/turris_omnia_defconfig +++ b/configs/turris_omnia_defconfig @@ -93,3 +93,4 @@ CONFIG_USB_XHCI_HCD=y CONFIG_USB_EHCI_HCD=y CONFIG_WDT=y CONFIG_WDT_ORION=y +CONFIG_EXT4_WRITE=y -- 2.34.1