From 9b2d906648ceed47a0008417413fa255a98c6ba4 Mon Sep 17 00:00:00 2001 From: CTCaer Date: Sat, 14 Dec 2019 22:43:00 +0200 Subject: [PATCH] hos: Add message for possible cause of unk pkg1 --- bootloader/hos/hos.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bootloader/hos/hos.c b/bootloader/hos/hos.c index 04e7781..d8c0be5 100644 --- a/bootloader/hos/hos.c +++ b/bootloader/hos/hos.c @@ -352,6 +352,8 @@ static int _read_emmc_pkg1(launch_ctxt_t *ctxt) if (!ctxt->pkg1_id) { _hos_crit_error("Unknown pkg1 version."); + EHPRINTFARGS("%sNot yet supported HOS version!", + (emu_cfg.enabled && !h_cfg.emummc_force_disable) ? "Is emuMMC corrupt?\nOr " : ""); goto out; } gfx_printf("Identified pkg1 and Keyblob %d\n\n", ctxt->pkg1_id->kb);