summaryrefslogtreecommitdiff
path: root/firmware/export
diff options
context:
space:
mode:
authorDana Conrad <dconrad@fastmail.com>2024-08-18 21:02:57 +0000
committerWilliam Wilgus <me.theuser@yahoo.com>2024-08-21 18:31:28 -0400
commitcd91c238dea01ce4fbd6bed4f40ac4a2fd7ad41b (patch)
tree1cfd24877bc2186f0a1d9032462cb67e70b826dc /firmware/export
parent5ddfdf6e2ff46ccee8a764a87fedb4253c9c6ff3 (diff)
downloadrockbox-master.tar.gz
rockbox-master.zip
Bootloaders: Include HAVE_MULTIVOLUME if BOOT_REDIR also presentHEADmaster
We need HAVE_MULTIVOLUME in bootloaders for redirect functionality to work. Change-Id: I50dbbb179bd012696e592ca843809fcc5fb78994
Diffstat (limited to 'firmware/export')
-rw-r--r--firmware/export/config.h3
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 */
893#endif 893#endif
894 894
895/* Bootloaders don't need multivolume awareness */ 895/* Bootloaders don't need multivolume awareness */
896#if defined(BOOTLOADER) && defined(HAVE_MULTIVOLUME) && !(CONFIG_PLATFORM & PLATFORM_HOSTED) 896#if defined(BOOTLOADER) && defined(HAVE_MULTIVOLUME) \
897 && !(CONFIG_PLATFORM & PLATFORM_HOSTED) && !defined(BOOT_REDIR)
897#undef HAVE_MULTIVOLUME 898#undef HAVE_MULTIVOLUME
898#endif 899#endif
899 900