diff options
author | Serge Schneider <[email protected]> | 2017-06-21 10:56:07 +0100 |
---|---|---|
committer | Serge Schneider <[email protected]> | 2017-06-21 10:56:07 +0100 |
commit | a0060bd475994d0466b2e24ea00003a38a8a0288 (patch) | |
tree | 306e09fe9c1c15d32828c5e1d18d0b056b92e04d | |
parent | d2b8d634b9b79d34b4aec10ce75f3503c439f6eb (diff) |
export-image: increase free space padding2017-06-21-raspbian-jessie
-rwxr-xr-x | export-image/prerun.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/export-image/prerun.sh b/export-image/prerun.sh index b782081..34a6d78 100755 --- a/export-image/prerun.sh +++ b/export-image/prerun.sh @@ -11,7 +11,7 @@ mkdir -p ${ROOTFS_DIR} BOOT_SIZE=$(du --apparent-size -s ${EXPORT_ROOTFS_DIR}/boot --block-size=1 | cut -f 1) TOTAL_SIZE=$(du --apparent-size -s ${EXPORT_ROOTFS_DIR} --exclude var/cache/apt/archives --block-size=1 | cut -f 1) -IMG_SIZE=$((BOOT_SIZE + TOTAL_SIZE + (400 * 1024 * 1024))) +IMG_SIZE=$((BOOT_SIZE + TOTAL_SIZE + (800 * 1024 * 1024))) truncate -s ${IMG_SIZE} ${IMG_FILE} fdisk -H 255 -S 63 ${IMG_FILE} <<EOF |