From 95fecfc095b7d40859185fb0dbb5b49ac91c88ee Mon Sep 17 00:00:00 2001 From: Aiken Harris Date: Sun, 5 Oct 2025 22:01:12 +0200 Subject: [PATCH] Increase disk image size for FAT32 support --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 136dafbf..aa5d0089 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -60,7 +60,7 @@ file(RELATIVE_PATH _PATH_PREFIX ${EXECTOS_BINARY_DIR} ${EXECTOS_SOURCE_DIR}) add_compiler_flags(-D__RELFILE__="&__FILE__[__FILE__[0] == '.' ? sizeof \\\"${_PATH_PREFIX}\\\" - 1 : sizeof XTOS_SOURCE_DIR]") # Set the virtual disk image size (in MiB) -set_disk_image_size(32) +set_disk_image_size(48) # Build all subprojects add_subdirectory(boot)