mirror of
https://github.com/CTCaer/hekate.git
synced 2024-11-09 12:01:45 +00:00
fss0: Support experimental content
Use key `fss0experimental=1` in a boot entry with `fss0=` defined to enable experimental content. (Older versions of hekate will just skip any experimental content.)
This commit is contained in:
parent
8d5c52f087
commit
8abda7f259
4 changed files with 20 additions and 1 deletions
|
@ -70,6 +70,7 @@ You can find a template [Here](./res/hekate_ipl_template.ini)
|
||||||
| kip1={SD path} | Replaces/Adds kernel initial process. Multiple can be set. |
|
| kip1={SD path} | Replaces/Adds kernel initial process. Multiple can be set. |
|
||||||
| kip1={SD folder}/* | Loads every .kip/.kip1 inside a folder. Compatible with single kip1 keys. |
|
| kip1={SD folder}/* | Loads every .kip/.kip1 inside a folder. Compatible with single kip1 keys. |
|
||||||
| fss0={SD path} | Takes a fusee-secondary binary and `extracts` all needed parts from it. kips, exosphere, warmboot and sept. |
|
| fss0={SD path} | Takes a fusee-secondary binary and `extracts` all needed parts from it. kips, exosphere, warmboot and sept. |
|
||||||
|
| fss0experimental=1 | Enables loading of experimental content from a FSS0 storage |
|
||||||
| kip1patch=patchname | Enables a kip1 patch. Specify with multiple lines and/or as CSV. If not found, an error will show up |
|
| kip1patch=patchname | Enables a kip1 patch. Specify with multiple lines and/or as CSV. If not found, an error will show up |
|
||||||
| fullsvcperm=1 | Disables SVC verification (full services permission) |
|
| fullsvcperm=1 | Disables SVC verification (full services permission) |
|
||||||
| debugmode=1 | Enables Debug mode. Obsolete when used with exosphere as secmon. |
|
| debugmode=1 | Enables Debug mode. Obsolete when used with exosphere as secmon. |
|
||||||
|
|
|
@ -44,6 +44,8 @@ extern bool is_ipl_updated(void *buf, char *path, bool force);
|
||||||
#define CNT_TYPE_BMP 7
|
#define CNT_TYPE_BMP 7
|
||||||
#define CNT_TYPE_EMC 8
|
#define CNT_TYPE_EMC 8
|
||||||
|
|
||||||
|
#define CNT_FLAG0_EXPERIMENTAL (1 << 0)
|
||||||
|
|
||||||
typedef struct _fss_t
|
typedef struct _fss_t
|
||||||
{
|
{
|
||||||
u32 magic;
|
u32 magic;
|
||||||
|
@ -60,7 +62,10 @@ typedef struct _fss_content_t
|
||||||
{
|
{
|
||||||
u32 offset;
|
u32 offset;
|
||||||
u32 size;
|
u32 size;
|
||||||
u32 type;
|
u8 type;
|
||||||
|
u8 flags0;
|
||||||
|
u8 flags1;
|
||||||
|
u8 flags2;
|
||||||
u32 rsvd1;
|
u32 rsvd1;
|
||||||
char name[0x10];
|
char name[0x10];
|
||||||
} fss_content_t;
|
} fss_content_t;
|
||||||
|
@ -142,6 +147,9 @@ int parse_fss(launch_ctxt_t *ctxt, const char *path, fss0_sept_t *sept_ctxt)
|
||||||
if ((curr_fss_cnt[i].offset + curr_fss_cnt[i].size) > fss_meta->size)
|
if ((curr_fss_cnt[i].offset + curr_fss_cnt[i].size) > fss_meta->size)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
|
if ((curr_fss_cnt[i].flags0 & CNT_FLAG0_EXPERIMENTAL) && !ctxt->fss0_enable_experimental)
|
||||||
|
continue;
|
||||||
|
|
||||||
// Load content to launch context.
|
// Load content to launch context.
|
||||||
if (!sept_ctxt)
|
if (!sept_ctxt)
|
||||||
{
|
{
|
||||||
|
|
|
@ -67,6 +67,7 @@ typedef struct _launch_ctxt_t
|
||||||
bool atmosphere;
|
bool atmosphere;
|
||||||
bool exo_no_user_exceptions;
|
bool exo_no_user_exceptions;
|
||||||
bool exo_user_pmu;
|
bool exo_user_pmu;
|
||||||
|
bool fss0_enable_experimental;
|
||||||
bool emuMMC;
|
bool emuMMC;
|
||||||
|
|
||||||
ini_sec_t *cfg;
|
ini_sec_t *cfg;
|
||||||
|
|
|
@ -213,6 +213,15 @@ static int _config_exo_user_pmu_access(launch_ctxt_t *ctxt, const char *value)
|
||||||
|
|
||||||
static int _config_fss(launch_ctxt_t *ctxt, const char *value)
|
static int _config_fss(launch_ctxt_t *ctxt, const char *value)
|
||||||
{
|
{
|
||||||
|
LIST_FOREACH_ENTRY(ini_kv_t, kv, &ctxt->cfg->kvs, link)
|
||||||
|
{
|
||||||
|
if (!strcmp("fss0experimental", kv->key))
|
||||||
|
{
|
||||||
|
ctxt->fss0_enable_experimental = *kv->val == '1';
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return parse_fss(ctxt, value, NULL);
|
return parse_fss(ctxt, value, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue