scripts/mkimage: use 256MB system partition for all platforms

closes #3677
This commit is contained in:
Stefan Saraev 2014-12-09 20:06:21 +02:00 committed by Stephan Raue
parent 305789f7f5
commit da48eab9b6

View File

@ -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 ))