From 7f0835a548420754a02763cc7f368299ff157331 Mon Sep 17 00:00:00 2001 From: CTCaer Date: Wed, 28 May 2025 04:53:58 +0300 Subject: [PATCH] hos: bail if requested emummc patch is not applied --- bootloader/hos/pkg2.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bootloader/hos/pkg2.c b/bootloader/hos/pkg2.c index 7bcf2ad7..f9004aff 100644 --- a/bootloader/hos/pkg2.c +++ b/bootloader/hos/pkg2.c @@ -691,6 +691,10 @@ const char *pkg2_patch_kips(link_t *info, char *patch_names) return patches[i]; } + // Check if emuMMC was applied. + if (emummc_patch_selected) + return "emummc"; + return NULL; }