test: fs: disable the metadata checksums on ext4 filesystems
If the metadata checksums are enabled, all write operations will fail. Signed-off-by: Jean-Jacques Hiblot <jjhiblot@ti.com> Reviewed-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
parent
d5aee659f2
commit
5cfc73e6e2
@ -143,6 +143,8 @@ def mk_fs(config, fs_type, size, id):
|
||||
mkfs_opt = '-F 16'
|
||||
elif fs_type == 'fat32':
|
||||
mkfs_opt = '-F 32'
|
||||
elif fs_type == 'ext4':
|
||||
mkfs_opt = '-O ^metadata_csum'
|
||||
else:
|
||||
mkfs_opt = ''
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user