2018-07-01 18:45:25 +01:00
|
|
|
/*
|
2018-08-05 12:40:32 +01:00
|
|
|
* Copyright (c) 2018 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/>.
|
|
|
|
*/
|
2018-07-01 18:45:25 +01:00
|
|
|
|
|
|
|
#ifndef _CONFIG_H_
|
|
|
|
#define _CONFIG_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;
|
|
|
|
u32 customlogo;
|
|
|
|
u32 verification;
|
2018-09-24 21:22:19 +01:00
|
|
|
u32 backlight;
|
2018-09-24 21:45:06 +01:00
|
|
|
u32 autohosoff;
|
2018-09-24 21:22:19 +01:00
|
|
|
u32 errors;
|
2018-07-09 14:02:47 +01:00
|
|
|
// Global temporary config.
|
|
|
|
int se_keygen_done;
|
2018-07-09 14:06:17 +01:00
|
|
|
u32 sbar_time_keeping;
|
2018-08-05 12:40:32 +01:00
|
|
|
} hekate_config;
|
2018-07-01 18:45:25 +01:00
|
|
|
|
2018-09-18 22:04:58 +01:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
ERR_LIBSYS_LP0 = (1 << 0),
|
|
|
|
} hsysmodule_t;
|
|
|
|
|
2018-07-01 18:45:25 +01:00
|
|
|
void set_default_configuration();
|
|
|
|
int create_config_entry();
|
|
|
|
void config_autoboot();
|
|
|
|
void config_bootdelay();
|
|
|
|
void config_customlogo();
|
|
|
|
void config_verification();
|
2018-09-18 22:01:42 +01:00
|
|
|
void config_backlight();
|
2018-09-24 21:45:06 +01:00
|
|
|
void config_auto_hos_poweroff();
|
2018-07-01 18:45:25 +01:00
|
|
|
|
|
|
|
#endif /* _CONFIG_H_ */
|