From da48eab9b653d31f22e4dce6568a97c70ac4d9df Mon Sep 17 00:00:00 2001 From: Stefan Saraev Date: Tue, 9 Dec 2014 20:06:21 +0200 Subject: [PATCH] scripts/mkimage: use 256MB system partition for all platforms closes #3677 --- scripts/mkimage | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/scripts/mkimage b/scripts/mkimage index 949de90970..1da5c30b81 100755 --- a/scripts/mkimage +++ b/scripts/mkimage @@ -27,11 +27,7 @@ OE_TMP=$(mktemp -d) LOOP=$(losetup -f) - if [ "$BOOTLOADER" = "bcm2835-bootloader" ]; then - SYSTEM_SIZE=128 - else - SYSTEM_SIZE=256 - fi + SYSTEM_SIZE=256 STORAGE_SIZE=32 # STORAGE_SIZE must be >= 32 ! DISK_SIZE=$(( $SYSTEM_SIZE + $STORAGE_SIZE + 4 ))