From 659ff49e51e64e72e033376abeb92204b29f53f6 Mon Sep 17 00:00:00 2001 From: Bartosz Bilas Date: Sun, 3 Nov 2019 12:50:16 +0100 Subject: [PATCH] configs/stm32mp157c_dk2: disable ext4 metadata_csum option The U-Boot ext4 write support doesn't work with the metadata_csum option, and the stm32mp157 U-Boot defconfig uses an environment stored in an ext4 filesystem, so we must create the ext4 root filesystem without the metadata_csum option enabled. Signed-off-by: Bartosz Bilas [Thomas: only disable the metadata_csum option, the 64bit and dir_index options can be kept enabled] Signed-off-by: Thomas Petazzoni --- configs/stm32mp157c_dk2_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/configs/stm32mp157c_dk2_defconfig b/configs/stm32mp157c_dk2_defconfig index a1e61d752d..7e5db3caa9 100644 --- a/configs/stm32mp157c_dk2_defconfig +++ b/configs/stm32mp157c_dk2_defconfig @@ -16,6 +16,7 @@ BR2_LINUX_KERNEL_INSTALL_TARGET=y BR2_TARGET_ROOTFS_EXT2=y BR2_TARGET_ROOTFS_EXT2_4=y BR2_TARGET_ROOTFS_EXT2_SIZE="120M" +BR2_TARGET_ROOTFS_EXT2_MKFS_OPTIONS="-O ^metadata_csum" # BR2_TARGET_ROOTFS_TAR is not set BR2_TARGET_UBOOT=y BR2_TARGET_UBOOT_BUILD_SYSTEM_KCONFIG=y -- 2.30.2