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. */
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));
}

View file

@ -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;