diff options
author | Dana Conrad <dconrad@fastmail.com> | 2024-08-18 21:02:57 +0000 |
---|---|---|
committer | William Wilgus <me.theuser@yahoo.com> | 2024-08-21 18:31:28 -0400 |
commit | cd91c238dea01ce4fbd6bed4f40ac4a2fd7ad41b (patch) | |
tree | 1cfd24877bc2186f0a1d9032462cb67e70b826dc | |
parent | 5ddfdf6e2ff46ccee8a764a87fedb4253c9c6ff3 (diff) | |
download | rockbox-cd91c238de.tar.gz rockbox-cd91c238de.zip |
Bootloaders: Include HAVE_MULTIVOLUME if BOOT_REDIR also present
We need HAVE_MULTIVOLUME in bootloaders for redirect
functionality to work.
Change-Id: I50dbbb179bd012696e592ca843809fcc5fb78994
-rw-r--r-- | firmware/export/config.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/firmware/export/config.h b/firmware/export/config.h index 37ea9a1dd7..ede1825f88 100644 --- a/firmware/export/config.h +++ b/firmware/export/config.h @@ -893,7 +893,8 @@ Lyre prototype 1 */ #endif /* Bootloaders don't need multivolume awareness */ -#if defined(BOOTLOADER) && defined(HAVE_MULTIVOLUME) && !(CONFIG_PLATFORM & PLATFORM_HOSTED) +#if defined(BOOTLOADER) && defined(HAVE_MULTIVOLUME) \ + && !(CONFIG_PLATFORM & PLATFORM_HOSTED) && !defined(BOOT_REDIR) #undef HAVE_MULTIVOLUME #endif |