mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-05 19:51:45 +00:00
stage2: package2: bypass hash checks for now
This commit is contained in:
parent
ecb83903c0
commit
0e9a304533
1 changed files with 1 additions and 1 deletions
|
@ -154,7 +154,7 @@ static bool package2_validate_metadata(package2_meta_t *metadata) {
|
|||
}
|
||||
|
||||
/* Validate section hashes. */
|
||||
if (metadata->section_sizes[section]) {
|
||||
if (false && metadata->section_sizes[section]) {
|
||||
void *section_data = package2->data + cur_section_offset;
|
||||
uint8_t calculated_hash[0x20];
|
||||
se_calculate_sha256(calculated_hash, section_data, metadata->section_sizes[section]);
|
||||
|
|
Loading…
Reference in a new issue