diff --git a/mkimage.sh b/mkimage.sh index fb08c3a..9e27bcd 100755 --- a/mkimage.sh +++ b/mkimage.sh @@ -65,7 +65,7 @@ usage() { -b /boot filesystem type (default: vfat) -B /boot filesystem size (default: 256MiB) -r / filesystem type (default: ext4) - -s Total image size (default: 2GiB) + -s Total image size (default: 768MiB) -o Image filename (default: guessed automatically) -x Number of threads to use for image compression (default: dynamic) -h Show this help and exit @@ -128,10 +128,10 @@ case "$PLATFORM" in ;; esac # By default we build all platform images with a 256MiB boot partition -# formated FAT16, and an approximately 1.88GiB root partition formatted +# formated FAT16, and an approximately 512MiB root partition formatted # ext4. More exotic combinations are of course possible, but this # combination works on all known platforms. -: "${IMGSIZE:=2G}" +: "${IMGSIZE:=768M}" : "${BOOT_FSTYPE:=vfat}" : "${BOOT_FSSIZE:=256MiB}" : "${ROOT_FSTYPE:=ext4}"