Fix coldboot init, Exosphere makes it to PK2LDR in this commit.

This commit is contained in:
Michael Scire
2018-03-01 20:10:05 -08:00
parent 63d0b08ac4
commit 0a80a7caf5
4 changed files with 30 additions and 18 deletions

View File

@@ -31,7 +31,7 @@ typedef struct {
} funcs;
uintptr_t addrs[3];
};
} warmboot_func_list_t;
} boot_func_list_t;
/* For coldboot */
typedef struct {
@@ -45,7 +45,6 @@ typedef struct {
size_t loaded_bin_size;
size_t nb_relocs_pre_mmu_init; /* first is always warmboot_crt0 */
size_t nb_relocs_post_mmu_init; /* first is always main segment excl. .bss */
warmboot_func_list_t *func_list;
coldboot_crt0_reloc_t relocs[];
} coldboot_crt0_reloc_list_t;