mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-09-21 00:38:37 +00:00
fusee: new scheme doesn't need FLAGS_DEFAULT
This commit is contained in:
parent
04bbeefd74
commit
cc31bb522d
2 changed files with 2 additions and 3 deletions
|
@ -34,7 +34,6 @@
|
||||||
#define EXOSPHERE_FLAG_BLANK_PRODINFO_SYSMMC (1 << 5u)
|
#define EXOSPHERE_FLAG_BLANK_PRODINFO_SYSMMC (1 << 5u)
|
||||||
#define EXOSPHERE_FLAG_BLANK_PRODINFO_EMUMMC (1 << 6u)
|
#define EXOSPHERE_FLAG_BLANK_PRODINFO_EMUMMC (1 << 6u)
|
||||||
#define EXOSPHERE_FLAG_ALLOW_WRITING_TO_CAL_SYSMMC (1 << 7u)
|
#define EXOSPHERE_FLAG_ALLOW_WRITING_TO_CAL_SYSMMC (1 << 7u)
|
||||||
#define EXOSPHERE_FLAGS_DEFAULT (EXOSPHERE_FLAG_IS_DEBUGMODE_PRIV)
|
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
uint32_t magic;
|
uint32_t magic;
|
||||||
|
|
|
@ -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));
|
memcpy(&exo_cfg.emummc_cfg, exo_emummc_cfg, sizeof(*exo_emummc_cfg));
|
||||||
|
|
||||||
if (keygen_type) {
|
if (keygen_type) {
|
||||||
exo_cfg.flags = EXOSPHERE_FLAGS_DEFAULT | EXOSPHERE_FLAG_PERFORM_620_KEYGEN;
|
exo_cfg.flags = EXOSPHERE_FLAG_PERFORM_620_KEYGEN;
|
||||||
} else {
|
} else {
|
||||||
exo_cfg.flags = EXOSPHERE_FLAGS_DEFAULT;
|
exo_cfg.flags = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Setup exosphere parse configuration with defaults. */
|
/* Setup exosphere parse configuration with defaults. */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue