Generic: use a minimum SYSTEM_SIZE of 1GB

The nvidia driver and it's firmware files need a lot of space, 512MB
is soon going to be too small.

Signed-off-by: Matthias Reichl <hias@horus.com>
This commit is contained in:
Matthias Reichl 2025-03-09 14:06:53 +01:00
parent a80dd47e5c
commit d044cde7f5

View File

@ -72,3 +72,8 @@
# Default size of the ova image, in MB, eg. 4096
OVA_SIZE="4096"
# ensure system size is at least 1 GB
if [ ${SYSTEM_SIZE} -lt 1024 ]; then
SYSTEM_SIZE=1024
fi