mirror of
https://github.com/CTCaer/hekate
synced 2024-11-16 00:49:27 +00:00
hekate/nyx: push some missed changes
This commit is contained in:
parent
535ea95086
commit
fe7fd6370e
3 changed files with 4 additions and 5 deletions
|
@ -997,7 +997,7 @@ int hos_launch(ini_sec_t *cfg)
|
|||
kernel_patch_t *kernel_patchset = ctxt.pkg2_kernel_id->kernel_patchset;
|
||||
if (kernel_patchset != NULL)
|
||||
{
|
||||
gfx_printf("%kPatching kernel%k\n", 0xFFFFBA00, 0xFFCCCCCC);
|
||||
gfx_printf("%kPatching kernel%k\n", TXT_CLR_ORANGE, TXT_CLR_DEFAULT);
|
||||
u32 *temp;
|
||||
for (u32 i = 0; kernel_patchset[i].id != 0xFFFFFFFF; i++)
|
||||
{
|
||||
|
@ -1038,7 +1038,7 @@ int hos_launch(ini_sec_t *cfg)
|
|||
|
||||
// Patch kip1s in memory if needed.
|
||||
if (ctxt.kip1_patches)
|
||||
gfx_printf("%kPatching kips%k\n", 0xFFFFBA00, 0xFFCCCCCC);
|
||||
gfx_printf("%kPatching kips%k\n", TXT_CLR_ORANGE, TXT_CLR_DEFAULT);
|
||||
const char* unappliedPatch = pkg2_patch_kips(&kip1_info, ctxt.kip1_patches);
|
||||
if (unappliedPatch != NULL)
|
||||
{
|
||||
|
@ -1069,7 +1069,7 @@ int hos_launch(ini_sec_t *cfg)
|
|||
sd_end();
|
||||
sdmmc_storage_end(&emmc_storage);
|
||||
|
||||
gfx_printf("Rebuilt & loaded pkg2\n\n%kBooting...%k\n", 0xFF96FF00, 0xFFCCCCCC);
|
||||
gfx_printf("Rebuilt & loaded pkg2\n\n%kBooting...%k\n", TXT_CLR_GREENISH, TXT_CLR_DEFAULT);
|
||||
|
||||
// Clear pkg1/pkg2 keys.
|
||||
se_aes_key_clear(8);
|
||||
|
|
|
@ -42,7 +42,6 @@ typedef struct _gui_status_bar_ctx
|
|||
lv_obj_t *temp_degrees;
|
||||
lv_obj_t *battery;
|
||||
lv_obj_t *battery_more;
|
||||
lv_obj_t *monitor;
|
||||
} gui_status_bar_ctx;
|
||||
|
||||
extern lv_style_t hint_small_style;
|
||||
|
|
|
@ -103,7 +103,7 @@ create_dir:
|
|||
#define EXT_PAYLOAD_ADDR 0xC0000000
|
||||
#define RCM_PAYLOAD_ADDR (EXT_PAYLOAD_ADDR + ALIGN(PATCHED_RELOC_SZ, 0x10))
|
||||
#define COREBOOT_END_ADDR 0xD0000000
|
||||
#define CBFS_DRAM_EN_ADDR 0x4003e000
|
||||
#define CBFS_DRAM_EN_ADDR 0x4003E000
|
||||
#define CBFS_DRAM_MAGIC 0x4452414D // "DRAM"
|
||||
|
||||
static void *coreboot_addr;
|
||||
|
|
Loading…
Reference in a new issue