diff options
author | Solomon Peachy <pizza@shaftnet.org> | 2024-11-02 14:44:57 -0400 |
---|---|---|
committer | Solomon Peachy <pizza@shaftnet.org> | 2024-11-02 14:46:23 -0400 |
commit | 04dc052a96d2f43ce4e96c1c768bb6043a47f680 (patch) | |
tree | a831b65723fe995eb4ae4c7e3c7749268a2432cb | |
parent | a8c52b1bfb8fd4333cffc6a1d9eff830bd35dba5 (diff) | |
download | rockbox-04dc052a96.tar.gz rockbox-04dc052a96.zip |
Fix (most of) the red in a8c52b1bfb
HAVE_STORAGE_INFO needs to be defined for all non-sim/hostfs targets
Change-Id: Id0d6f88306776cfc286fc0d852b77b70ba389efc
-rw-r--r-- | firmware/export/config.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/firmware/export/config.h b/firmware/export/config.h index bedf7df4e2..be40df2546 100644 --- a/firmware/export/config.h +++ b/firmware/export/config.h @@ -1259,11 +1259,9 @@ Lyre prototype 1 */ # define INCLUDE_TIMEOUT_API #endif -#ifndef SIMULATOR -#if defined(HAVE_USBSTACK) || (CONFIG_STORAGE & STORAGE_NAND) || (CONFIG_STORAGE & STORAGE_RAMDISK) +#if (!defined(SIMULATOR) && !defined(HAVE_HOSTFS)) #define STORAGE_GET_INFO #endif -#endif #if defined(HAVE_SIGALTSTACK_THREADS) #ifndef _XOPEN_SOURCE |