hekate/nyx: adhere to hw_deinit change

This commit is contained in:
CTCaer
2024-05-19 10:49:46 +03:00
parent ae29f359ee
commit 5453c593a3
5 changed files with 9 additions and 12 deletions

View File

@@ -923,7 +923,7 @@ static void _launch_hos(u8 autoboot, u8 autoboot_list)
sd_end();
hw_reinit_workaround(false, 0);
hw_deinit(false, 0);
(*main_ptr)();
}
@@ -939,10 +939,7 @@ void reload_nyx()
sd_end();
hw_reinit_workaround(false, 0);
// Some cards (Sandisk U1), do not like a fast power cycle. Wait min 100ms.
sdmmc_storage_init_wait_sd();
hw_deinit(false, 0);
(*main_ptr)();
}

View File

@@ -985,7 +985,7 @@ static lv_res_t _action_reboot_recovery(lv_obj_t * btns, const char * txt)
// Deinit hardware.
sd_end();
hw_reinit_workaround(false, 0);
hw_deinit(false, 0);
// Chainload to hekate main.
(*main_ptr)();

View File

@@ -179,12 +179,12 @@ lv_res_t launch_payload(lv_obj_t *list)
if (size < 0x30000)
{
reloc_patcher(PATCHED_RELOC_ENTRY, EXT_PAYLOAD_ADDR, ALIGN(size, 0x10));
hw_reinit_workaround(false, byte_swap_32(*(u32 *)(buf + size - sizeof(u32))));
hw_deinit(false, byte_swap_32(*(u32 *)(buf + size - sizeof(u32))));
}
else
{
reloc_patcher(PATCHED_RELOC_ENTRY, EXT_PAYLOAD_ADDR, 0x7000);
hw_reinit_workaround(true, 0);
hw_deinit(true, 0);
}
void (*ext_payload_ptr)() = (void *)EXT_PAYLOAD_ADDR;