diff --git a/fusee/fusee-secondary/src/main.c b/fusee/fusee-secondary/src/main.c index b47a69ac0..8218c8cd7 100644 --- a/fusee/fusee-secondary/src/main.c +++ b/fusee/fusee-secondary/src/main.c @@ -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)); } diff --git a/fusee/fusee-secondary/src/stage2.h b/fusee/fusee-secondary/src/stage2.h index a05db15cb..1314e87df 100644 --- a/fusee/fusee-secondary/src/stage2.h +++ b/fusee/fusee-secondary/src/stage2.h @@ -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;