1
0
Fork 0
mirror of https://github.com/Atmosphere-NX/Atmosphere.git synced 2024-11-29 23:32:23 +00:00

boot_100.kip vs boot_200.kip is gross

This commit is contained in:
Michael Scire 2019-04-29 03:00:04 -07:00
parent 8c3dae846e
commit 6034beb084

View file

@ -168,7 +168,9 @@ void set_version_specific_smcs(void) {
case ATMOSPHERE_TARGET_FIRMWARE_100: case ATMOSPHERE_TARGET_FIRMWARE_100:
/* 1.0.0 doesn't have ConfigureCarveout or ReadWriteRegister. */ /* 1.0.0 doesn't have ConfigureCarveout or ReadWriteRegister. */
g_smc_priv_table[7].handler = NULL; g_smc_priv_table[7].handler = NULL;
g_smc_priv_table[8].handler = NULL; /* However, it is in our interest to enable ReadWriteRegister. */
/* So we will not actually NOP it out. */
/* g_smc_priv_table[8].handler = NULL; */
/* 1.0.0 doesn't have UnwrapAesWrappedTitlekey. */ /* 1.0.0 doesn't have UnwrapAesWrappedTitlekey. */
g_smc_user_table[0x12].handler = NULL; g_smc_user_table[0x12].handler = NULL;
break; break;