Merge branch 'thingos' into dev

This commit is contained in:
Calin Crisan 2018-11-23 11:06:49 +02:00
commit 8e6c321415
2 changed files with 3 additions and 3 deletions

View File

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

View File

@ -23,7 +23,7 @@ case "$1" in
test -b $data_dev && exit 0
msg_begin "Creating data partition"
data_start=$((512 * 2048)) # up to 512MB reserved for boot + root
data_start=$((1024 * 2048)) # up to 1024MB reserved for boot + root
echo -e "n
p
3