From abf57d2e43e4c6f41e04103a70fc9a4f57a28fc0 Mon Sep 17 00:00:00 2001 From: hexkyz Date: Fri, 31 Aug 2018 22:52:31 +0000 Subject: [PATCH] fusee: Unmount *after* reading the splash screen. --- fusee/fusee-secondary/src/nxboot.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fusee/fusee-secondary/src/nxboot.c b/fusee/fusee-secondary/src/nxboot.c index 0e1351251..8a44b2f8c 100644 --- a/fusee/fusee-secondary/src/nxboot.c +++ b/fusee/fusee-secondary/src/nxboot.c @@ -381,9 +381,6 @@ void nxboot_main(void) { } free(package2); - /* Unmount everything. */ - nxfs_unmount_all(); - /* Clear used keyslots. */ clear_aes_keyslot(KEYSLOT_SWITCH_PACKAGE2KEY); clear_aes_keyslot(KEYSLOT_SWITCH_RNGKEY); @@ -426,6 +423,9 @@ void nxboot_main(void) { /* Display splash screen. */ display_splash_screen_bmp(loader_ctx->custom_splash_path); + /* Unmount everything. */ + nxfs_unmount_all(); + /* Turn off the backlight. */ display_backlight(false);