From fe5bee50bec856e878bad00fd69f71493777a545 Mon Sep 17 00:00:00 2001 From: Solomon Peachy Date: Sat, 20 Jul 2024 08:45:18 -0400 Subject: [PATCH] Multivolume: Hosted targets are also limited to just one volume per "drive" (It would be interesting to try and work around this but it would have to be done on a per-target/platform basis) Change-Id: I7a27199082998420fea3c6abbbf5f3c526ccaec4 --- firmware/export/config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/export/config.h b/firmware/export/config.h index 84b43c69a5..37ea9a1dd7 100644 --- a/firmware/export/config.h +++ b/firmware/export/config.h @@ -898,7 +898,7 @@ Lyre prototype 1 */ #endif /* Number of volumes per drive */ -#if defined(HAVE_MULTIVOLUME) && !defined(SIMULATOR) +#if defined(HAVE_MULTIVOLUME) && !defined(SIMULATOR) && !(CONFIG_PLATFORM & PLATFORM_HOSTED) #define NUM_VOLUMES_PER_DRIVE 4 #else #define NUM_VOLUMES_PER_DRIVE 1