From a2539d3c563e5c58c7f42e625c351d84c786ade7 Mon Sep 17 00:00:00 2001 From: Martin Wimpress Date: Sat, 24 Jan 2026 02:05:03 +0000 Subject: [PATCH] fix(quickget): resize Batocera image for GPT expansion --- quickget | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/quickget b/quickget index 9ad0345..6e16b80 100755 --- a/quickget +++ b/quickget @@ -3355,7 +3355,10 @@ function create_vm() { if [[ ${ISO} = *".gz"* ]]; then gzip -d "${VM_PATH}/${ISO}" ISO="${ISO/.gz/}" - fi;; + fi + # Resize the raw image to provide space for Batocera's partition expansion + require_qemu_img + ${QEMU_IMG} resize -f raw "${VM_PATH}/${ISO}" 128G;; dragonflybsd) # Could be other OS iso files compressed with bzip2 or gzip # but for now we'll keep this to know cases