diff options
author | Gunnar Beutner <gbeutner@serenityos.org> | 2021-06-15 15:14:58 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-06-17 11:03:51 +0200 |
commit | 6e094b8dbe91bea983284c747eaba5c6083eb364 (patch) | |
tree | 36ec283b5b21b71c410077bf4f668c54fadfa0dc /Meta/build-image-qemu.sh | |
parent | 0ca5a393d1fafe77570f551376177f5755c30f7a (diff) | |
download | serenity-6e094b8dbe91bea983284c747eaba5c6083eb364.zip |
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.
Diffstat (limited to 'Meta/build-image-qemu.sh')
-rwxr-xr-x | Meta/build-image-qemu.sh | 2 |
1 files changed, 1 insertions, 1 deletions
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 |