Add warnings on missing bootloader libraries

This commit is contained in:
Kostas Missos
2018-09-19 00:04:58 +03:00
parent 67a470921a
commit b9e348fc17
4 changed files with 49 additions and 33 deletions

View File

@@ -46,6 +46,7 @@ void set_default_configuration()
h_cfg.se_keygen_done = 0;
h_cfg.sbar_time_keeping = 0;
h_cfg.backlight = 100;
h_cfg.errors = 0;
}
int create_config_entry()

View File

@@ -30,8 +30,14 @@ typedef struct _hekate_config
int se_keygen_done;
u32 sbar_time_keeping;
u32 backlight;
u32 errors;
} hekate_config;
typedef enum
{
ERR_LIBSYS_LP0 = (1 << 0),
} hsysmodule_t;
void set_default_configuration();
int create_config_entry();
void config_autoboot();