ccimx6ul: ubifs: increase max leb count for rootfs

This is required to be able to use the whole RootFS partition which is
512 MiB in the 0x04 CC6UL SOM variant.

The old value only allowed to manage partitions of up to 256 MiB, this new
value allows for up to 1 GiB (assuming 128 KiB erase block size).

https://jira.digi.com/browse/DEL-4567

Signed-off-by: Jose Diaz de Grenu <Jose.DiazdeGrenu@digi.com>
This commit is contained in:
Diaz de Grenu, Jose 2017-07-11 13:25:16 +02:00 committed by Jose Diaz de Grenu
parent 03dcd12f83
commit d7cd1c0204
1 changed files with 1 additions and 1 deletions

View File

@ -42,4 +42,4 @@ KERNEL_IMAGETYPE = "zImage"
MKUBIFS_BOOT_ARGS ?= "-m 2048 -e 126976 -c 127"
# mkfs.ubifs parameters for rootfs partition
MKUBIFS_ARGS ?= "-m 2048 -e 126976 -c 2047"
MKUBIFS_ARGS ?= "-m 2048 -e 126976 -c 8191"