fusee: new scheme doesn't need FLAGS_DEFAULT

This commit is contained in:
Michael Scire 2020-04-20 12:01:09 -07:00
parent 04bbeefd74
commit cc31bb522d
2 changed files with 2 additions and 3 deletions

View File

@ -34,7 +34,6 @@
#define EXOSPHERE_FLAG_BLANK_PRODINFO_SYSMMC (1 << 5u)
#define EXOSPHERE_FLAG_BLANK_PRODINFO_EMUMMC (1 << 6u)
#define EXOSPHERE_FLAG_ALLOW_WRITING_TO_CAL_SYSMMC (1 << 7u)
#define EXOSPHERE_FLAGS_DEFAULT (EXOSPHERE_FLAG_IS_DEBUGMODE_PRIV)
typedef struct {
uint32_t magic;

View File

@ -368,9 +368,9 @@ static void nxboot_configure_exosphere(uint32_t target_firmware, unsigned int ke
memcpy(&exo_cfg.emummc_cfg, exo_emummc_cfg, sizeof(*exo_emummc_cfg));
if (keygen_type) {
exo_cfg.flags = EXOSPHERE_FLAGS_DEFAULT | EXOSPHERE_FLAG_PERFORM_620_KEYGEN;
exo_cfg.flags = EXOSPHERE_FLAG_PERFORM_620_KEYGEN;
} else {
exo_cfg.flags = EXOSPHERE_FLAGS_DEFAULT;
exo_cfg.flags = 0;
}
/* Setup exosphere parse configuration with defaults. */