From 6e094b8dbe91bea983284c747eaba5c6083eb364 Mon Sep 17 00:00:00 2001 From: Gunnar Beutner Date: Tue, 15 Jun 2021 15:14:58 +0200 Subject: [PATCH] Meta: Increase additional space for disk images Previously we'd add 100MB on top of what du returned for the Root directory. This increases that to 500MB. --- Meta/build-image-qemu.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Meta/build-image-qemu.sh b/Meta/build-image-qemu.sh index 4cb6e88b83..a583bab7e9 100755 --- a/Meta/build-image-qemu.sh +++ b/Meta/build-image-qemu.sh @@ -27,7 +27,7 @@ else fi } -DISK_SIZE=$(($(disk_usage "$SERENITY_SOURCE_DIR/Base") + $(disk_usage Root) + 100)) +DISK_SIZE=$(($(disk_usage "$SERENITY_SOURCE_DIR/Base") + $(disk_usage Root) + 500)) DISK_SIZE=${DISK_SIZE:-600} DISK_SIZE_BYTES=$((DISK_SIZE * 1024 * 1024)) unset DISK_SIZE