1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 12:08:14 +00:00

Build: Bump the default disk image size from 500MB to 600MB

This gives us a little more leeway for installing ports, etc.
This commit is contained in:
Andreas Kling 2019-11-26 12:54:15 +01:00
parent 6d1c4ae5a9
commit 67d2875d60
2 changed files with 2 additions and 2 deletions

View file

@ -22,7 +22,7 @@ fi
echo "using grub-install at ${grub}"
echo "setting up disk image..."
dd if=/dev/zero of=_disk_image bs=1M count="${DISK_SIZE:-500}" status=none || die "couldn't create disk image"
dd if=/dev/zero of=_disk_image bs=1M count="${DISK_SIZE:-600}" status=none || die "couldn't create disk image"
chown 1000:1000 _disk_image || die "couldn't adjust permissions on disk image"
echo "done"