1
0
Fork 0
forked from len0rd/rockbox

Bootloaders: Include HAVE_MULTIVOLUME if BOOT_REDIR also present

We need HAVE_MULTIVOLUME in bootloaders for redirect
functionality to work.

Change-Id: I50dbbb179bd012696e592ca843809fcc5fb78994
This commit is contained in:
Dana Conrad 2024-08-18 21:02:57 +00:00 committed by William Wilgus
parent 5ddfdf6e2f
commit cd91c238de

View file

@ -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