From d044cde7f59699af40dad5e721628a60c113036c Mon Sep 17 00:00:00 2001 From: Matthias Reichl Date: Sun, 9 Mar 2025 14:06:53 +0100 Subject: [PATCH] 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 --- projects/Generic/options | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/projects/Generic/options b/projects/Generic/options index c46838d4a1..d23531047e 100644 --- a/projects/Generic/options +++ b/projects/Generic/options @@ -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