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