From 850656df922941f1f82e85caff3e2c531a88f73e Mon Sep 17 00:00:00 2001 From: Calin Crisan Date: Fri, 23 Nov 2018 11:04:57 +0200 Subject: [PATCH] Increase boot partition size to 30/100MB --- board/common/mkimage.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/board/common/mkimage.sh b/board/common/mkimage.sh index 294cc7ff2c..79fd04bb15 100755 --- a/board/common/mkimage.sh +++ b/board/common/mkimage.sh @@ -16,9 +16,9 @@ BOOT_START=${BOOT_START:-2048} # 2048 sectors = 1MB BOOT_SRC=$IMG_DIR/boot BOOT=$IMG_DIR/.boot BOOT_IMG=$IMG_DIR/boot.img -BOOT_SIZE="20" # MB - reserved up to 50 MB +BOOT_SIZE="30" # MB - reserved up to 100 MB -ROOT_START=$((50 * 2048)) # 50 MB +ROOT_START=$((100 * 2048)) # 100 MB ROOT_SRC=$IMG_DIR/rootfs.tar ROOT=$IMG_DIR/.root ROOT_IMG=$IMG_DIR/root.img