2019-06-30 01:03:00 +00:00
|
|
|
/*
|
2021-05-11 06:32:38 +00:00
|
|
|
* Copyright (c) 2018-2021 CTCaer
|
2019-06-30 01:03:00 +00:00
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _CONFIG_H_
|
|
|
|
#define _CONFIG_H_
|
|
|
|
|
2022-01-15 22:04:34 +00:00
|
|
|
#include <bdk.h>
|
|
|
|
|
2020-06-14 13:45:45 +00:00
|
|
|
#include "hos/hos.h"
|
2019-06-30 01:03:00 +00:00
|
|
|
|
|
|
|
typedef struct _hekate_config
|
|
|
|
{
|
|
|
|
// Non-volatile config.
|
|
|
|
u32 autoboot;
|
|
|
|
u32 autoboot_list;
|
|
|
|
u32 bootwait;
|
|
|
|
u32 backlight;
|
|
|
|
u32 autohosoff;
|
|
|
|
u32 autonogc;
|
2019-12-11 22:13:32 +00:00
|
|
|
u32 updater2p;
|
2020-10-20 07:16:12 +00:00
|
|
|
u32 bootprotect;
|
2019-06-30 01:03:00 +00:00
|
|
|
// Global temporary config.
|
2020-06-26 19:40:06 +00:00
|
|
|
bool t210b01;
|
2019-06-30 01:03:00 +00:00
|
|
|
bool emummc_force_disable;
|
2019-09-09 13:56:37 +00:00
|
|
|
bool rcm_patched;
|
|
|
|
u32 errors;
|
2020-04-30 00:43:29 +00:00
|
|
|
hos_eks_mbr_t *eks;
|
2019-06-30 01:03:00 +00:00
|
|
|
} hekate_config;
|
|
|
|
|
2020-04-29 23:00:33 +00:00
|
|
|
typedef struct _nyx_config
|
|
|
|
{
|
2020-04-30 01:04:24 +00:00
|
|
|
u32 themecolor;
|
2020-05-05 16:26:10 +00:00
|
|
|
u32 timeoff;
|
2020-04-30 11:49:28 +00:00
|
|
|
u32 home_screen;
|
2020-04-29 23:00:33 +00:00
|
|
|
u32 verification;
|
2020-05-05 16:26:10 +00:00
|
|
|
u32 ums_emmc_rw;
|
2020-10-20 07:21:48 +00:00
|
|
|
u32 jc_disable;
|
2022-03-22 22:49:47 +00:00
|
|
|
u32 jc_force_right;
|
2021-05-11 06:32:38 +00:00
|
|
|
u32 bpmp_clock;
|
2020-04-29 23:00:33 +00:00
|
|
|
} nyx_config;
|
|
|
|
|
2019-06-30 01:03:00 +00:00
|
|
|
void set_default_configuration();
|
2020-04-29 23:00:33 +00:00
|
|
|
void set_nyx_default_configuration();
|
2019-06-30 01:03:00 +00:00
|
|
|
int create_config_entry();
|
2021-05-11 06:32:38 +00:00
|
|
|
int create_nyx_config_entry(bool force_unmount);
|
2019-06-30 01:03:00 +00:00
|
|
|
|
|
|
|
#endif /* _CONFIG_H_ */
|