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 vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 1A00CC433FE for ; Wed, 20 Apr 2022 13:48:01 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1350241AbiDTNup (ORCPT ); Wed, 20 Apr 2022 09:50:45 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:40044 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1379168AbiDTNuk (ORCPT ); Wed, 20 Apr 2022 09:50:40 -0400 Received: from esa.microchip.iphmx.com (esa.microchip.iphmx.com [68.232.153.233]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 47AC942ED7 for ; Wed, 20 Apr 2022 06:47:54 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=microchip.com; i=@microchip.com; q=dns/txt; s=mchp; t=1650462473; x=1681998473; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=5ao346sDVJSbdKmDp8xl/2o1pBdAl0H+ML7P1bFRXoc=; b=0GLHdu+Vj3d0D8ubILQbFfUQSMBQhIKFoPkbY1Xj8hEQWXKUu4Si/Y9Z H2AImBASwtDVC1LSajHKHtVxo0aC7HKDUuMMePgJ3hmWEV0C6M50bDvoM 0KAX0XiNwduKcfpIzrwIEWm8lZMTu4SkGJMqrTZorsX9M2Und56+FgPJG 6wk/Wnj6K5aNkyXzC34K1yuhwzgobuvyHSyWNJugknDLvNlLwrB/9Eq2f gaLlow389pOWKCzZjxkO7G/clyXNLIQThGxSjRMMNkOrUL+s/p7yPLB2A +hyZ4T12mjOLHks6txumrRdKGdl1PzmGOKZ+TBWSg0Kh1+zwjgj8OFhn5 g==; X-IronPort-AV: E=Sophos;i="5.90,275,1643698800"; d="scan'208";a="161113729" Received: from smtpout.microchip.com (HELO email.microchip.com) ([198.175.253.82]) by esa3.microchip.iphmx.com with ESMTP/TLS/AES256-SHA256; 20 Apr 2022 06:47:53 -0700 Received: from chn-vm-ex03.mchp-main.com (10.10.85.151) by chn-vm-ex03.mchp-main.com (10.10.85.151) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2375.17; Wed, 20 Apr 2022 06:47:53 -0700 Received: from ROB-ULT-M18064N.mchp-main.com (10.10.115.15) by chn-vm-ex03.mchp-main.com (10.10.85.151) with Microsoft SMTP Server id 15.1.2375.17 via Frontend Transport; Wed, 20 Apr 2022 06:47:50 -0700 From: Tudor Ambarus To: , , CC: , , , , "Tudor Ambarus" Subject: [PATCH 3/3] ARM: configs: at91: sama7: Enable MTD_UBI_BLOCK Date: Wed, 20 Apr 2022 16:47:40 +0300 Message-ID: <20220420134740.193563-3-tudor.ambarus@microchip.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220420134740.193563-1-tudor.ambarus@microchip.com> References: <20220420134740.193563-1-tudor.ambarus@microchip.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Address read only block filesystems like SquashFS, and use MTD_UBI_BLOCK to benefit of UBI's bit-flip handling and wear-levelling. Signed-off-by: Tudor Ambarus --- arch/arm/configs/sama7_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/configs/sama7_defconfig b/arch/arm/configs/sama7_defconfig index 03652454274f..b267a49ddac5 100644 --- a/arch/arm/configs/sama7_defconfig +++ b/arch/arm/configs/sama7_defconfig @@ -95,6 +95,7 @@ CONFIG_MTD_NAND_ATMEL=y CONFIG_MTD_SPI_NOR=y CONFIG_MTD_UBI=y CONFIG_MTD_UBI_FASTMAP=y +CONFIG_MTD_UBI_BLOCK=y CONFIG_BLK_DEV_LOOP=y CONFIG_BLK_DEV_RAM=y CONFIG_BLK_DEV_RAM_COUNT=1 -- 2.25.1