mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-05 19:51:45 +00:00
fusee: Temporarily disable anything that prevents the fusee-primary to fusee-secondary transition.
This commit is contained in:
parent
ddbbb0b758
commit
c5e9aec013
2 changed files with 2 additions and 2 deletions
|
@ -30,7 +30,7 @@ static void setup_env(void) {
|
|||
/* Set up exception handlers. */
|
||||
setup_exception_handlers();
|
||||
|
||||
if(switchfs_import_mmc_structs(&g_stage2_args->sd_mmc, NULL) == -1 || switchfs_mount_all() == -1) {
|
||||
if(/*switchfs_import_mmc_structs(&g_stage2_args->sd_mmc, NULL) == -1 ||*/ switchfs_mount_all() == -1) {
|
||||
fatal_error("Failed to mount at least one parition: %s\n", strerror(errno));
|
||||
}
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
|
||||
typedef struct {
|
||||
uint32_t version;
|
||||
struct mmc sd_mmc;
|
||||
//struct mmc sd_mmc;
|
||||
bool display_initialized;
|
||||
char bct0[BCTO_MAX_SIZE];
|
||||
} stage2_args_t;
|
||||
|
|
Loading…
Reference in a new issue