From 5ed6c74d7c871faca9bf3232ecf9b579997e2181 Mon Sep 17 00:00:00 2001 From: Space Meyer Date: Wed, 19 Apr 2023 14:21:36 +0200 Subject: tools: disable ext4 feature verity in buildroot Our current buildroot can't be mounted by v5.3 kernels and older: EXT4-fs (sda): couldn't mount RDWR because of unsupported optional features (8000) This has caused lots of bad bisection results, see #3224. Our buildroot must support very old kernels so we can test during cause bisections. --- tools/create-buildroot-image.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/create-buildroot-image.sh b/tools/create-buildroot-image.sh index 56ba453d7..c5c34a667 100755 --- a/tools/create-buildroot-image.sh +++ b/tools/create-buildroot-image.sh @@ -58,7 +58,7 @@ BR2_PACKAGE_OPENSSH=y BR2_TARGET_ROOTFS_EXT2_SIZE="1G" # Slightly more interesting and realistic options. -BR2_TARGET_ROOTFS_EXT2_MKFS_OPTIONS="-O 64bit,ext_attr,encrypt,verity,extents,huge_file,flex_bg,dir_nlink,sparse_super,resize_inode,has_journal" +BR2_TARGET_ROOTFS_EXT2_MKFS_OPTIONS="-O 64bit,ext_attr,encrypt,extents,huge_file,flex_bg,dir_nlink,sparse_super,resize_inode,has_journal" # Install firmware for USB devices we can connect during fuzzing. BR2_PACKAGE_LINUX_FIRMWARE=y -- cgit mrf-deployment