From b47192465143006837b8b4619e47a43ea8829f46 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 321503ba86..0b2da2ef49 100644 --- a/projects/Generic/options +++ b/projects/Generic/options @@ -64,3 +64,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