From d8da3751a5430b9265d6019675a626f77be60a8f Mon Sep 17 00:00:00 2001 From: Jeffrey Paul Date: Mon, 15 Oct 2018 21:16:03 -0700 Subject: [PATCH] update .gitignore for osx, fix image size, set en_US locale --- .gitignore | 1 + export-image/prerun.sh | 3 +++ stage0/01-locale/00-debconf | 4 ++-- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 36c33a5..7ffc5d2 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ SKIP_IMAGES .pc *-pc apt-cacher-ng/ +.DS_Store diff --git a/export-image/prerun.sh b/export-image/prerun.sh index 0ac7181..ae2d0e7 100755 --- a/export-image/prerun.sh +++ b/export-image/prerun.sh @@ -16,6 +16,9 @@ ROUND_SIZE="$((4 * 1024 * 1024))" ROUNDED_ROOT_SECTOR=$(((2 * BOOT_SIZE + ROUND_SIZE) / ROUND_SIZE * ROUND_SIZE / 512 + 8192)) IMG_SIZE=$(((BOOT_SIZE + TOTAL_SIZE + (800 * 1024 * 1024) + ROUND_SIZE - 1) / ROUND_SIZE * ROUND_SIZE)) +# i am not sure why without this it does not create a large enough root +IMG_SIZE=$(( $IMG_SIZE * 4 )) + truncate -s "${IMG_SIZE}" "${IMG_FILE}" fdisk -H 255 -S 63 "${IMG_FILE}" <