From fcb7273103d8e39b811141675abd205473bd598d Mon Sep 17 00:00:00 2001 From: rw-r-r-0644 Date: Wed, 26 May 2021 02:21:26 +0200 Subject: [PATCH] Disable cache & mmu until SDHC stability issues are fully resolved --- stage2/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stage2/main.c b/stage2/main.c index a647062..787de4e 100644 --- a/stage2/main.c +++ b/stage2/main.c @@ -104,7 +104,7 @@ error_open: u32 _main(void) { u32 vector = 0; - mem_initialize(); + //mem_initialize(); irq_initialize(); crypto_read_otp(); nand_initialize(); @@ -119,7 +119,7 @@ u32 _main(void) nand_deinitialize(); irq_shutdown(); - mem_shutdown(); + //mem_shutdown(); /* failed to load the payload from SD or NAND -> shutdown */ if (!vector)