hekate/nyx: remove coreboot support

Everything external is finally updated and beyond parity with old things that needed it.
This commit is contained in:
CTCaer
2026-01-12 04:04:08 +02:00
parent 8ab6f04243
commit f0dde780f4
5 changed files with 49 additions and 122 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2025 CTCaer
* Copyright (c) 2018-2026 CTCaer
*
* This program is free software; you can redistribute it and/or modify it
* under the terms and conditions of the GNU General Public License,
@@ -935,7 +935,7 @@ static void _launch_hos(u8 autoboot, u8 autoboot_list)
sd_end();
hw_deinit(false, 0);
hw_deinit(false);
(*main_ptr)();
}
@@ -970,7 +970,7 @@ void reload_nyx(lv_obj_t *obj, bool force)
sd_end();
hw_deinit(false, 0);
hw_deinit(false);
(*main_ptr)();
}

View File

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2019-2025 CTCaer
* Copyright (c) 2019-2026 CTCaer
*
* This program is free software; you can redistribute it and/or modify it
* under the terms and conditions of the GNU General Public License,
@@ -1174,7 +1174,7 @@ static lv_res_t _action_reboot_recovery(lv_obj_t * btns, const char * txt)
// Deinit hardware.
sd_end();
hw_deinit(false, 0);
hw_deinit(false);
// Chainload to hekate main.
(*main_ptr)();