From 7cf785b58adcef60bc8284828387d64a8c9606d9 Mon Sep 17 00:00:00 2001 From: MilhouseVH Date: Sun, 20 Dec 2015 18:11:07 +0000 Subject: [PATCH] Stop being stingy with System partition size --- scripts/mkimage | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/mkimage b/scripts/mkimage index 590ec3928b..2a5635f881 100755 --- a/scripts/mkimage +++ b/scripts/mkimage @@ -27,7 +27,7 @@ OE_TMP=$(mktemp -d) LOOP=$(losetup -f) - SYSTEM_SIZE=256 + SYSTEM_SIZE=512 STORAGE_SIZE=32 # STORAGE_SIZE must be >= 32 ! DISK_SIZE=$(( $SYSTEM_SIZE + $STORAGE_SIZE + 4 ))