aboutsummaryrefslogtreecommitdiffstats
path: root/tools/create-buildroot-image.sh
diff options
context:
space:
mode:
authorSpace Meyer <spm@google.com>2023-04-19 14:21:36 +0200
committerSpace Meyer <git@the-space.agency>2023-04-20 11:47:01 +0200
commit5ed6c74d7c871faca9bf3232ecf9b579997e2181 (patch)
tree71a823b6818b39f32362448c7ec98e089335d3e4 /tools/create-buildroot-image.sh
parent58ccdc6d2b7c77f7d38f3c856d0ed0f3453119b8 (diff)
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.
Diffstat (limited to 'tools/create-buildroot-image.sh')
-rwxr-xr-xtools/create-buildroot-image.sh2
1 files changed, 1 insertions, 1 deletions
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