From c5e9aec013fa5e843618182dd5a5027d9e97e1b6 Mon Sep 17 00:00:00 2001 From: hexkyz Date: Wed, 4 Jul 2018 22:04:41 +0100 Subject: [PATCH] fusee: Temporarily disable anything that prevents the fusee-primary to fusee-secondary transition. --- fusee/fusee-secondary/src/main.c | 2 +- fusee/fusee-secondary/src/stage2.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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;