tests: littlefs: fix large partition mounting

Fixes a large partition mounting error
for flashes with erase size > 32KB
(e.g. s26ks512s0 has 256KB erase size).

Signed-off-by: Andrej Butok <andrey.butok@nxp.com>
This commit is contained in:
Andrej Butok 2025-04-02 17:02:53 +02:00 committed by Benjamin Cabé
commit 8f2f97ce32

View file

@ -45,7 +45,6 @@ static struct fs_littlefs large = {
.prog_size = LARGE_IO_SIZE,
.cache_size = LARGE_CACHE_SIZE,
.lookahead_size = LARGE_LOOKAHEAD_SIZE,
.block_size = 32768, /* increase erase size */
.read_buffer = large_read_buffer,
.prog_buffer = large_prog_buffer,
.lookahead_buffer = large_lookahead_buffer,