From 2761cd97f439f97d1739bd84280a73e818cc2ed4 Mon Sep 17 00:00:00 2001 From: Holger Hans Peter Freyther Date: Sat, 11 May 2013 14:32:20 +0200 Subject: [PATCH] sysmobts-v2: Allow the rootfs to grow to the full size of the flash The rootfs in the UBI is configured to grow to the full size of the UBI, currently these are 999 LEBs (when there is no kernel volume) but we had limited the LEBs the filesystem can hold to 400. After this change the filesystem will grow from the 42MB to more than 120 MB. I'm not sure if we really want to have a rootfs of that size but we can at least experiment with it and see if the failure rate is changing or not. --- conf/machine/sysmobts-v2.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/machine/sysmobts-v2.conf b/conf/machine/sysmobts-v2.conf index b86a9a1..586a44c 100644 --- a/conf/machine/sysmobts-v2.conf +++ b/conf/machine/sysmobts-v2.conf @@ -7,7 +7,7 @@ EXTRA_IMAGEDEPENDS = "dvnixload-native ubl u-boot sysmobts-firmware" EXTRA_IMAGECMD_jffs2 = "--little-endian --eraseblock=0x20000 --pagesize=0x800 --no-cleanmarkers --pad=0x2000000 -n" # ubifs config -MKUBIFS_ARGS ?= "-m 2048 -e 129024 -c 400" +MKUBIFS_ARGS ?= "-m 2048 -e 129024 -c 999" UBINIZE_ARGS ?= "-m 2048 -p 128KiB -s 512"