mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-09 13:41:43 +00:00
fusee: fix prodinfo blanking flag detection for sysmmc (closes #1610)
This commit is contained in:
parent
844e88bdfe
commit
44beeecc9e
1 changed files with 12 additions and 8 deletions
|
@ -622,16 +622,20 @@ namespace ams::nxboot {
|
||||||
storage_ctx.flags[0] &= ~secmon::SecureMonitorConfigurationFlag_EnableUserModePerformanceCounterAccess;
|
storage_ctx.flags[0] &= ~secmon::SecureMonitorConfigurationFlag_EnableUserModePerformanceCounterAccess;
|
||||||
}
|
}
|
||||||
} else if (std::strcmp(entry.key, "blank_prodinfo_sysmmc") == 0) {
|
} else if (std::strcmp(entry.key, "blank_prodinfo_sysmmc") == 0) {
|
||||||
if (entry.value[0] == '1' && !emummc_enabled) {
|
if (!emummc_enabled) {
|
||||||
storage_ctx.flags[0] |= secmon::SecureMonitorConfigurationFlag_ShouldUseBlankCalibrationBinary;
|
if (entry.value[0] == '1') {
|
||||||
} else {
|
storage_ctx.flags[0] |= secmon::SecureMonitorConfigurationFlag_ShouldUseBlankCalibrationBinary;
|
||||||
storage_ctx.flags[0] &= ~secmon::SecureMonitorConfigurationFlag_ShouldUseBlankCalibrationBinary;
|
} else {
|
||||||
|
storage_ctx.flags[0] &= ~secmon::SecureMonitorConfigurationFlag_ShouldUseBlankCalibrationBinary;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
} else if (std::strcmp(entry.key, "blank_prodinfo_emummc") == 0) {
|
} else if (std::strcmp(entry.key, "blank_prodinfo_emummc") == 0) {
|
||||||
if (entry.value[0] == '1' && emummc_enabled) {
|
if (emummc_enabled) {
|
||||||
storage_ctx.flags[0] |= secmon::SecureMonitorConfigurationFlag_ShouldUseBlankCalibrationBinary;
|
if (entry.value[0] == '1') {
|
||||||
} else {
|
storage_ctx.flags[0] |= secmon::SecureMonitorConfigurationFlag_ShouldUseBlankCalibrationBinary;
|
||||||
storage_ctx.flags[0] &= ~secmon::SecureMonitorConfigurationFlag_ShouldUseBlankCalibrationBinary;
|
} else {
|
||||||
|
storage_ctx.flags[0] &= ~secmon::SecureMonitorConfigurationFlag_ShouldUseBlankCalibrationBinary;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
} else if (std::strcmp(entry.key, "allow_writing_to_cal_sysmmc") == 0) {
|
} else if (std::strcmp(entry.key, "allow_writing_to_cal_sysmmc") == 0) {
|
||||||
if (entry.value[0] == '1') {
|
if (entry.value[0] == '1') {
|
||||||
|
|
Loading…
Reference in a new issue