2018-07-01 13:45:25 -04:00
|
|
|
/*
|
2022-12-18 23:41:21 -03:00
|
|
|
* Copyright (c) 2018-2022 CTCaer
|
2018-08-05 07:40:32 -04: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/>.
|
|
|
|
*/
|
2018-07-01 13:45:25 -04:00
|
|
|
|
|
|
|
#ifndef _CONFIG_H_
|
|
|
|
#define _CONFIG_H_
|
|
|
|
|
2022-01-15 19:04:34 -03:00
|
|
|
#include <bdk.h>
|
|
|
|
|
2020-06-14 09:45:45 -04:00
|
|
|
#include "hos/hos.h"
|
2018-07-01 13:45:25 -04:00
|
|
|
|
|
|
|
typedef struct _hekate_config
|
|
|
|
{
|
2018-09-24 17:22:19 -03:00
|
|
|
// Non-volatile config.
|
2018-07-01 13:45:25 -04:00
|
|
|
u32 autoboot;
|
2018-08-20 22:37:40 -03:00
|
|
|
u32 autoboot_list;
|
2018-07-01 13:45:25 -04:00
|
|
|
u32 bootwait;
|
2022-10-11 01:49:17 -03:00
|
|
|
u32 noticker;
|
2018-09-24 17:22:19 -03:00
|
|
|
u32 backlight;
|
2018-09-24 17:45:06 -03:00
|
|
|
u32 autohosoff;
|
2019-02-23 20:06:24 -03:00
|
|
|
u32 autonogc;
|
2019-12-11 19:13:32 -03:00
|
|
|
u32 updater2p;
|
2020-10-20 04:16:12 -03:00
|
|
|
u32 bootprotect;
|
2018-07-09 09:02:47 -04:00
|
|
|
// Global temporary config.
|
2020-06-26 15:40:06 -04:00
|
|
|
bool t210b01;
|
2019-06-29 20:40:37 -04:00
|
|
|
bool emummc_force_disable;
|
2019-09-09 10:56:37 -03:00
|
|
|
bool rcm_patched;
|
|
|
|
u32 errors;
|
2020-04-29 20:43:29 -04:00
|
|
|
hos_eks_mbr_t *eks;
|
2018-08-05 07:40:32 -04:00
|
|
|
} hekate_config;
|
2018-07-01 13:45:25 -04:00
|
|
|
|
|
|
|
void set_default_configuration();
|
|
|
|
|
|
|
|
#endif /* _CONFIG_H_ */
|