1
0
Fork 0
mirror of https://github.com/Atmosphere-NX/Atmosphere.git synced 2024-09-20 05:53:24 +01:00

fusee: Temporarily disable anything that prevents the fusee-primary to fusee-secondary transition.

This commit is contained in:
hexkyz 2018-07-04 22:04:41 +01:00
parent ddbbb0b758
commit c5e9aec013
2 changed files with 2 additions and 2 deletions

View file

@ -30,7 +30,7 @@ static void setup_env(void) {
/* Set up exception handlers. */ /* Set up exception handlers. */
setup_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)); fatal_error("Failed to mount at least one parition: %s\n", strerror(errno));
} }

View file

@ -13,7 +13,7 @@
typedef struct { typedef struct {
uint32_t version; uint32_t version;
struct mmc sd_mmc; //struct mmc sd_mmc;
bool display_initialized; bool display_initialized;
char bct0[BCTO_MAX_SIZE]; char bct0[BCTO_MAX_SIZE];
} stage2_args_t; } stage2_args_t;