From 8884da908d2fb5fc691356b285d5d5c43dd91844 Mon Sep 17 00:00:00 2001 From: Calin Crisan Date: Sat, 12 Jan 2019 17:28:44 +0200 Subject: [PATCH] mkimage.sh: root partition size is now 200MB by default --- board/common/mkimage.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/board/common/mkimage.sh b/board/common/mkimage.sh index 6b0bd9c859..68c37e3fbd 100755 --- a/board/common/mkimage.sh +++ b/board/common/mkimage.sh @@ -22,7 +22,7 @@ ROOT_START="100" # MB ROOT_SRC=${IMG_DIR}/rootfs.tar ROOT=${IMG_DIR}/.root ROOT_IMG=${IMG_DIR}/root.img -ROOT_SIZE="180" # MB +ROOT_SIZE="200" # MB GUARD_SIZE="10" # MB DISK_SIZE=$((ROOT_START + ROOT_SIZE + GUARD_SIZE))