Merge pull request #20 from hrw/enlarge-disk

set default disk image size to 100MB for all archs
This commit is contained in:
Scott Moser 2020-01-22 15:21:47 -05:00 committed by GitHub
commit 3fa11cb1e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 2 deletions

View File

@ -114,7 +114,6 @@ get_grub_format() {
get_img_size() {
local arch=$1
case "$arch" in
powerpc|ppc*|aarch64) size=96M;;
*) size="";;
esac
echo $size

View File

@ -21,7 +21,7 @@ source "${0%/*}/common-functions.sh"
TEMP_D=""
UMOUNT=""
DEF_SIZE=${DEF_SIZE:-32M}
DEF_SIZE=${DEF_SIZE:-100M}
DEF_MODULES="acpiphp e1000 ne2k-pci 8139cp pcnet32 ip_tables"
Usage() {