2018-07-01 18:45:25 +01:00
|
|
|
/*
|
2019-02-23 23:06:24 +00:00
|
|
|
* Copyright (c) 2018-2019 CTCaer
|
2018-08-05 12:40:32 +01: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 18:45:25 +01:00
|
|
|
|
|
|
|
#ifndef _CONFIG_H_
|
|
|
|
#define _CONFIG_H_
|
|
|
|
|
2020-04-30 01:43:29 +01:00
|
|
|
#include "../hos/hos.h"
|
2018-08-13 09:58:24 +01:00
|
|
|
#include "../utils/types.h"
|
2018-07-01 18:45:25 +01:00
|
|
|
|
|
|
|
typedef struct _hekate_config
|
|
|
|
{
|
2018-09-24 21:22:19 +01:00
|
|
|
// Non-volatile config.
|
2018-07-01 18:45:25 +01:00
|
|
|
u32 autoboot;
|
2018-08-21 02:37:40 +01:00
|
|
|
u32 autoboot_list;
|
2018-07-01 18:45:25 +01:00
|
|
|
u32 bootwait;
|
2018-09-24 21:22:19 +01:00
|
|
|
u32 backlight;
|
2018-09-24 21:45:06 +01:00
|
|
|
u32 autohosoff;
|
2019-02-23 23:06:24 +00:00
|
|
|
u32 autonogc;
|
2019-12-11 22:13:32 +00:00
|
|
|
u32 updater2p;
|
2019-06-30 01:55:19 +01:00
|
|
|
char *brand;
|
|
|
|
char *tagline;
|
2018-07-09 14:02:47 +01:00
|
|
|
// Global temporary config.
|
2019-04-16 18:09:04 +01:00
|
|
|
bool se_keygen_done;
|
2019-09-09 14:56:37 +01:00
|
|
|
bool sept_run;
|
2019-06-30 01:40:37 +01:00
|
|
|
bool emummc_force_disable;
|
2019-09-09 14:56:37 +01:00
|
|
|
bool rcm_patched;
|
|
|
|
u32 sbar_time_keeping;
|
|
|
|
u32 errors;
|
2020-04-30 01:43:29 +01:00
|
|
|
hos_eks_mbr_t *eks;
|
2018-08-05 12:40:32 +01:00
|
|
|
} hekate_config;
|
2018-07-01 18:45:25 +01:00
|
|
|
|
|
|
|
void set_default_configuration();
|
|
|
|
int create_config_entry();
|
|
|
|
void config_autoboot();
|
|
|
|
void config_bootdelay();
|
2018-09-18 22:01:42 +01:00
|
|
|
void config_backlight();
|
2018-09-24 21:45:06 +01:00
|
|
|
void config_auto_hos_poweroff();
|
2019-02-23 23:06:24 +00:00
|
|
|
void config_nogc();
|
2018-07-01 18:45:25 +01:00
|
|
|
|
|
|
|
#endif /* _CONFIG_H_ */
|