From 5f337bffd68e6bb344cf88a834a37c4a5891bd87 Mon Sep 17 00:00:00 2001 From: CTCaer Date: Sat, 29 Jan 2022 01:35:09 +0200 Subject: [PATCH] config: do not unmount on exit Fixes Nyx not found for new users without hekate_ipl.ini --- bootloader/config.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/bootloader/config.c b/bootloader/config.c index e9021e1..8fbca05 100644 --- a/bootloader/config.c +++ b/bootloader/config.c @@ -44,9 +44,6 @@ void set_default_configuration() int create_config_entry() { - if (!sd_mount()) - return 1; - char lbuf[64]; FIL fp; bool mainIniFound = false; @@ -151,7 +148,6 @@ int create_config_entry() } f_close(&fp); - sd_end(); return 0; }