mirror of
https://github.com/CTCaer/hekate
synced 2024-11-03 02:26:35 +00:00
f35c5b0596
SD card should not get unmounted on the first boot without hekate_ipl.ini. Move sd card mounting management outside of it.
253 lines
5.6 KiB
C
253 lines
5.6 KiB
C
/*
|
|
* Copyright (c) 2018-2023 CTCaer
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms and conditions of the GNU General Public License,
|
|
* version 2, as published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
* more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
|
|
#include <bdk.h>
|
|
|
|
#include "config.h"
|
|
#include <libs/fatfs/ff.h>
|
|
|
|
extern hekate_config h_cfg;
|
|
extern nyx_config n_cfg;
|
|
|
|
void set_default_configuration()
|
|
{
|
|
h_cfg.t210b01 = hw_get_chip_id() == GP_HIDREV_MAJOR_T210B01;
|
|
|
|
h_cfg.autoboot = 0;
|
|
h_cfg.autoboot_list = 0;
|
|
h_cfg.bootwait = 3;
|
|
h_cfg.noticker = 0;
|
|
h_cfg.backlight = 100;
|
|
h_cfg.autohosoff = h_cfg.t210b01 ? 1 : 0;
|
|
h_cfg.autonogc = 1;
|
|
h_cfg.updater2p = 0;
|
|
h_cfg.bootprotect = 0;
|
|
|
|
h_cfg.errors = 0;
|
|
h_cfg.eks = NULL;
|
|
h_cfg.rcm_patched = fuse_check_patched_rcm();
|
|
h_cfg.autorcm_enabled = false;
|
|
h_cfg.emummc_force_disable = false;
|
|
|
|
sd_power_cycle_time_start = 0;
|
|
}
|
|
|
|
void set_nyx_default_configuration()
|
|
{
|
|
n_cfg.theme_bg = 0x2D2D2D;
|
|
n_cfg.theme_color = 167;
|
|
n_cfg.entries_5_col = 0;
|
|
n_cfg.timeoff = 0;
|
|
n_cfg.home_screen = 0;
|
|
n_cfg.verification = 1;
|
|
n_cfg.ums_emmc_rw = 0;
|
|
n_cfg.jc_disable = 0;
|
|
n_cfg.jc_force_right = 0;
|
|
n_cfg.bpmp_clock = 0;
|
|
}
|
|
|
|
int create_config_entry()
|
|
{
|
|
char lbuf[64];
|
|
FIL fp;
|
|
bool mainIniFound = false;
|
|
|
|
LIST_INIT(ini_sections);
|
|
|
|
if (ini_parse(&ini_sections, "bootloader/hekate_ipl.ini", false))
|
|
mainIniFound = true;
|
|
else
|
|
{
|
|
u8 res = f_open(&fp, "bootloader/hekate_ipl.ini", FA_READ);
|
|
if (res == FR_NO_FILE || res == FR_NO_PATH)
|
|
{
|
|
f_mkdir("bootloader");
|
|
f_mkdir("bootloader/ini");
|
|
f_mkdir("bootloader/payloads");
|
|
f_mkdir("bootloader/sys");
|
|
}
|
|
else
|
|
{
|
|
if (!res)
|
|
f_close(&fp);
|
|
return 1;
|
|
}
|
|
}
|
|
|
|
if (f_open(&fp, "bootloader/hekate_ipl.ini", FA_WRITE | FA_CREATE_ALWAYS) != FR_OK)
|
|
return 1;
|
|
|
|
// Add config entry.
|
|
f_puts("[config]\nautoboot=", &fp);
|
|
itoa(h_cfg.autoboot, lbuf, 10);
|
|
f_puts(lbuf, &fp);
|
|
|
|
f_puts("\nautoboot_list=", &fp);
|
|
itoa(h_cfg.autoboot_list, lbuf, 10);
|
|
f_puts(lbuf, &fp);
|
|
/*
|
|
* Clamp value to default if it exceeds 20s to protect against corruption.
|
|
* Allow up to 20s though for use in cases where user needs lots of time.
|
|
* For example dock-only use and r2p with enough time to reach dock and cancel it.
|
|
*/
|
|
if (h_cfg.bootwait > 20)
|
|
h_cfg.bootwait = 3;
|
|
f_puts("\nbootwait=", &fp);
|
|
itoa(h_cfg.bootwait, lbuf, 10);
|
|
f_puts(lbuf, &fp);
|
|
|
|
f_puts("\nbacklight=", &fp);
|
|
itoa(h_cfg.backlight, lbuf, 10);
|
|
f_puts(lbuf, &fp);
|
|
|
|
f_puts("\nnoticker=", &fp);
|
|
itoa(h_cfg.noticker, lbuf, 10);
|
|
f_puts(lbuf, &fp);
|
|
|
|
f_puts("\nautohosoff=", &fp);
|
|
itoa(h_cfg.autohosoff, lbuf, 10);
|
|
f_puts(lbuf, &fp);
|
|
|
|
f_puts("\nautonogc=", &fp);
|
|
itoa(h_cfg.autonogc, lbuf, 10);
|
|
f_puts(lbuf, &fp);
|
|
|
|
f_puts("\nupdater2p=", &fp);
|
|
itoa(h_cfg.updater2p, lbuf, 10);
|
|
f_puts(lbuf, &fp);
|
|
|
|
f_puts("\nbootprotect=", &fp);
|
|
itoa(h_cfg.bootprotect, lbuf, 10);
|
|
f_puts(lbuf, &fp);
|
|
|
|
f_puts("\n", &fp);
|
|
|
|
if (mainIniFound)
|
|
{
|
|
// Re-construct existing entries.
|
|
LIST_FOREACH_ENTRY(ini_sec_t, ini_sec, &ini_sections, link)
|
|
{
|
|
if (!strcmp(ini_sec->name, "config"))
|
|
continue;
|
|
|
|
switch (ini_sec->type)
|
|
{
|
|
case INI_CHOICE: // Re-construct Boot entry [ ].
|
|
f_puts("[", &fp);
|
|
f_puts(ini_sec->name, &fp);
|
|
f_puts("]\n", &fp);
|
|
// Re-construct boot entry's config.
|
|
LIST_FOREACH_ENTRY(ini_kv_t, kv, &ini_sec->kvs, link)
|
|
{
|
|
f_puts(kv->key, &fp);
|
|
f_puts("=", &fp);
|
|
f_puts(kv->val, &fp);
|
|
f_puts("\n", &fp);
|
|
}
|
|
break;
|
|
case INI_CAPTION: // Re-construct caption entry { }.
|
|
f_puts("{", &fp);
|
|
f_puts(ini_sec->name, &fp);
|
|
f_puts("}\n", &fp);
|
|
break;
|
|
case INI_NEWLINE: // Re-construct cosmetic newline \n.
|
|
f_puts("\n", &fp);
|
|
break;
|
|
case INI_COMMENT: // Re-construct comment entry #.
|
|
f_puts("#", &fp);
|
|
f_puts(ini_sec->name, &fp);
|
|
f_puts("\n", &fp);
|
|
break;
|
|
}
|
|
}
|
|
|
|
ini_free(&ini_sections);
|
|
}
|
|
|
|
f_close(&fp);
|
|
|
|
return 0;
|
|
}
|
|
|
|
int create_nyx_config_entry(bool force_unmount)
|
|
{
|
|
bool sd_mounted = sd_get_card_mounted();
|
|
|
|
if (!sd_mount())
|
|
return 1;
|
|
|
|
char lbuf[64];
|
|
FIL fp;
|
|
|
|
// Make sure that bootloader folder exists.
|
|
f_mkdir("bootloader");
|
|
|
|
if (f_open(&fp, "bootloader/nyx.ini", FA_WRITE | FA_CREATE_ALWAYS) != FR_OK)
|
|
return 1;
|
|
|
|
// Add config entry.
|
|
f_puts("[config]\nthemebg=", &fp);
|
|
itoa(n_cfg.theme_bg, lbuf, 16);
|
|
f_puts(lbuf, &fp);
|
|
|
|
f_puts("\nthemecolor=", &fp);
|
|
itoa(n_cfg.theme_color, lbuf, 10);
|
|
f_puts(lbuf, &fp);
|
|
|
|
f_puts("\nentries5col=", &fp);
|
|
itoa(n_cfg.entries_5_col, lbuf, 10);
|
|
f_puts(lbuf, &fp);
|
|
|
|
f_puts("\ntimeoff=", &fp);
|
|
itoa(n_cfg.timeoff, lbuf, 16);
|
|
f_puts(lbuf, &fp);
|
|
|
|
f_puts("\nhomescreen=", &fp);
|
|
itoa(n_cfg.home_screen, lbuf, 10);
|
|
f_puts(lbuf, &fp);
|
|
|
|
f_puts("\nverification=", &fp);
|
|
itoa(n_cfg.verification, lbuf, 10);
|
|
f_puts(lbuf, &fp);
|
|
|
|
f_puts("\numsemmcrw=", &fp);
|
|
itoa(n_cfg.ums_emmc_rw, lbuf, 10);
|
|
f_puts(lbuf, &fp);
|
|
|
|
f_puts("\njcdisable=", &fp);
|
|
itoa(n_cfg.jc_disable, lbuf, 10);
|
|
f_puts(lbuf, &fp);
|
|
|
|
f_puts("\njcforceright=", &fp);
|
|
itoa(n_cfg.jc_force_right, lbuf, 10);
|
|
f_puts(lbuf, &fp);
|
|
|
|
f_puts("\nbpmpclock=", &fp);
|
|
itoa(n_cfg.bpmp_clock, lbuf, 10);
|
|
f_puts(lbuf, &fp);
|
|
|
|
f_puts("\n", &fp);
|
|
|
|
f_close(&fp);
|
|
|
|
if (force_unmount || !sd_mounted)
|
|
sd_unmount();
|
|
|
|
return 0;
|
|
}
|