mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2024-11-09 22:56:35 +00:00
fusee: update fss0 header
This commit is contained in:
parent
f7fb689412
commit
4eb3109c93
2 changed files with 75 additions and 21 deletions
|
@ -97,11 +97,18 @@ _metadata:
|
||||||
#define CONTENT_TYPE_KLD 9
|
#define CONTENT_TYPE_KLD 9
|
||||||
#define CONTENT_TYPE_KRN 10
|
#define CONTENT_TYPE_KRN 10
|
||||||
|
|
||||||
|
#define CONTENT_FLAG_NONE (0 << 0)
|
||||||
|
|
||||||
|
#define CONTENT_FLAG0_EXPERIMENTAL (1 << 0)
|
||||||
|
|
||||||
_content_headers:
|
_content_headers:
|
||||||
/* ams_mitm content header */
|
/* ams_mitm content header */
|
||||||
.word __ams_mitm_kip_start__
|
.word __ams_mitm_kip_start__
|
||||||
.word __ams_mitm_kip_size__
|
.word __ams_mitm_kip_size__
|
||||||
.word CONTENT_TYPE_KIP
|
.byte CONTENT_TYPE_KIP
|
||||||
|
.byte CONTENT_FLAG_NONE
|
||||||
|
.byte CONTENT_FLAG_NONE
|
||||||
|
.byte CONTENT_FLAG_NONE
|
||||||
.word 0xCCCCCCCC
|
.word 0xCCCCCCCC
|
||||||
.asciz "ams_mitm"
|
.asciz "ams_mitm"
|
||||||
.align 5
|
.align 5
|
||||||
|
@ -109,7 +116,10 @@ _content_headers:
|
||||||
/* boot content header */
|
/* boot content header */
|
||||||
.word __boot_kip_start__
|
.word __boot_kip_start__
|
||||||
.word __boot_kip_size__
|
.word __boot_kip_size__
|
||||||
.word CONTENT_TYPE_KIP
|
.byte CONTENT_TYPE_KIP
|
||||||
|
.byte CONTENT_FLAG_NONE
|
||||||
|
.byte CONTENT_FLAG_NONE
|
||||||
|
.byte CONTENT_FLAG_NONE
|
||||||
.word 0xCCCCCCCC
|
.word 0xCCCCCCCC
|
||||||
.asciz "boot"
|
.asciz "boot"
|
||||||
.align 5
|
.align 5
|
||||||
|
@ -117,7 +127,10 @@ _content_headers:
|
||||||
/* exosphere content header */
|
/* exosphere content header */
|
||||||
.word __exosphere_bin_start__
|
.word __exosphere_bin_start__
|
||||||
.word __exosphere_bin_size__
|
.word __exosphere_bin_size__
|
||||||
.word CONTENT_TYPE_EXO
|
.byte CONTENT_TYPE_EXO
|
||||||
|
.byte CONTENT_FLAG_NONE
|
||||||
|
.byte CONTENT_FLAG_NONE
|
||||||
|
.byte CONTENT_FLAG_NONE
|
||||||
.word 0xCCCCCCCC
|
.word 0xCCCCCCCC
|
||||||
.asciz "exosphere"
|
.asciz "exosphere"
|
||||||
.align 5
|
.align 5
|
||||||
|
@ -125,7 +138,10 @@ _content_headers:
|
||||||
/* fusee_primary content header */
|
/* fusee_primary content header */
|
||||||
.word __fusee_primary_bin_start__
|
.word __fusee_primary_bin_start__
|
||||||
.word __fusee_primary_bin_size__
|
.word __fusee_primary_bin_size__
|
||||||
.word CONTENT_TYPE_FSP
|
.byte CONTENT_TYPE_FSP
|
||||||
|
.byte CONTENT_FLAG_NONE
|
||||||
|
.byte CONTENT_FLAG_NONE
|
||||||
|
.byte CONTENT_FLAG_NONE
|
||||||
.word 0xCCCCCCCC
|
.word 0xCCCCCCCC
|
||||||
.asciz "fusee_primary"
|
.asciz "fusee_primary"
|
||||||
.align 5
|
.align 5
|
||||||
|
@ -133,15 +149,21 @@ _content_headers:
|
||||||
/* loader content header */
|
/* loader content header */
|
||||||
.word __loader_kip_start__
|
.word __loader_kip_start__
|
||||||
.word __loader_kip_size__
|
.word __loader_kip_size__
|
||||||
.word CONTENT_TYPE_KIP
|
.byte CONTENT_TYPE_KIP
|
||||||
|
.byte CONTENT_FLAG_NONE
|
||||||
|
.byte CONTENT_FLAG_NONE
|
||||||
|
.byte CONTENT_FLAG_NONE
|
||||||
.word 0xCCCCCCCC
|
.word 0xCCCCCCCC
|
||||||
.asciz "loader"
|
.asciz "Loader"
|
||||||
.align 5
|
.align 5
|
||||||
|
|
||||||
/* lp0fw content header */
|
/* lp0fw content header */
|
||||||
.word __lp0fw_bin_start__
|
.word __lp0fw_bin_start__
|
||||||
.word __lp0fw_bin_size__
|
.word __lp0fw_bin_size__
|
||||||
.word CONTENT_TYPE_WBT
|
.byte CONTENT_TYPE_WBT
|
||||||
|
.byte CONTENT_FLAG_NONE
|
||||||
|
.byte CONTENT_FLAG_NONE
|
||||||
|
.byte CONTENT_FLAG_NONE
|
||||||
.word 0xCCCCCCCC
|
.word 0xCCCCCCCC
|
||||||
.asciz "lp0fw"
|
.asciz "lp0fw"
|
||||||
.align 5
|
.align 5
|
||||||
|
@ -149,15 +171,20 @@ _content_headers:
|
||||||
/* pm content header */
|
/* pm content header */
|
||||||
.word __pm_kip_start__
|
.word __pm_kip_start__
|
||||||
.word __pm_kip_size__
|
.word __pm_kip_size__
|
||||||
.word CONTENT_TYPE_KIP
|
.byte CONTENT_TYPE_KIP
|
||||||
.word 0xCCCCCCCC
|
.byte CONTENT_FLAG_NONE
|
||||||
.asciz "pm"
|
.byte CONTENT_FLAG_NONE
|
||||||
|
.byte CONTENT_FLAG_NONE
|
||||||
|
.asciz "ProcessManager"
|
||||||
.align 5
|
.align 5
|
||||||
|
|
||||||
/* rebootstub content header */
|
/* rebootstub content header */
|
||||||
.word __rebootstub_bin_start__
|
.word __rebootstub_bin_start__
|
||||||
.word __rebootstub_bin_size__
|
.word __rebootstub_bin_size__
|
||||||
.word CONTENT_TYPE_RBT
|
.byte CONTENT_TYPE_RBT
|
||||||
|
.byte CONTENT_FLAG_NONE
|
||||||
|
.byte CONTENT_FLAG_NONE
|
||||||
|
.byte CONTENT_FLAG_NONE
|
||||||
.word 0xCCCCCCCC
|
.word 0xCCCCCCCC
|
||||||
.asciz "rebootstub"
|
.asciz "rebootstub"
|
||||||
.align 5
|
.align 5
|
||||||
|
@ -165,7 +192,10 @@ _content_headers:
|
||||||
/* sept_primary content header */
|
/* sept_primary content header */
|
||||||
.word __sept_primary_bin_start__
|
.word __sept_primary_bin_start__
|
||||||
.word __sept_primary_bin_size__
|
.word __sept_primary_bin_size__
|
||||||
.word CONTENT_TYPE_SP1
|
.byte CONTENT_TYPE_SP1
|
||||||
|
.byte CONTENT_FLAG_NONE
|
||||||
|
.byte CONTENT_FLAG_NONE
|
||||||
|
.byte CONTENT_FLAG_NONE
|
||||||
.word 0xCCCCCCCC
|
.word 0xCCCCCCCC
|
||||||
.asciz "sept_primary"
|
.asciz "sept_primary"
|
||||||
.align 5
|
.align 5
|
||||||
|
@ -173,7 +203,10 @@ _content_headers:
|
||||||
/* sept_secondary 00 content header */
|
/* sept_secondary 00 content header */
|
||||||
.word __sept_secondary_00_enc_start__
|
.word __sept_secondary_00_enc_start__
|
||||||
.word __sept_secondary_00_enc_size__
|
.word __sept_secondary_00_enc_size__
|
||||||
.word CONTENT_TYPE_SP2
|
.byte CONTENT_TYPE_SP2
|
||||||
|
.byte CONTENT_FLAG_NONE
|
||||||
|
.byte CONTENT_FLAG_NONE
|
||||||
|
.byte CONTENT_FLAG_NONE
|
||||||
.word 0xCCCCCCCC
|
.word 0xCCCCCCCC
|
||||||
.asciz "septsecondary00"
|
.asciz "septsecondary00"
|
||||||
.align 5
|
.align 5
|
||||||
|
@ -181,7 +214,10 @@ _content_headers:
|
||||||
/* sept_secondary 01 content header */
|
/* sept_secondary 01 content header */
|
||||||
.word __sept_secondary_01_enc_start__
|
.word __sept_secondary_01_enc_start__
|
||||||
.word __sept_secondary_01_enc_size__
|
.word __sept_secondary_01_enc_size__
|
||||||
.word CONTENT_TYPE_SP2
|
.byte CONTENT_TYPE_SP2
|
||||||
|
.byte CONTENT_FLAG_NONE
|
||||||
|
.byte CONTENT_FLAG_NONE
|
||||||
|
.byte CONTENT_FLAG_NONE
|
||||||
.word 0xCCCCCCCC
|
.word 0xCCCCCCCC
|
||||||
.asciz "septsecondary01"
|
.asciz "septsecondary01"
|
||||||
.align 5
|
.align 5
|
||||||
|
@ -189,7 +225,10 @@ _content_headers:
|
||||||
/* sm content header */
|
/* sm content header */
|
||||||
.word __sm_kip_start__
|
.word __sm_kip_start__
|
||||||
.word __sm_kip_size__
|
.word __sm_kip_size__
|
||||||
.word CONTENT_TYPE_KIP
|
.byte CONTENT_TYPE_KIP
|
||||||
|
.byte CONTENT_FLAG_NONE
|
||||||
|
.byte CONTENT_FLAG_NONE
|
||||||
|
.byte CONTENT_FLAG_NONE
|
||||||
.word 0xCCCCCCCC
|
.word 0xCCCCCCCC
|
||||||
.asciz "sm"
|
.asciz "sm"
|
||||||
.align 5
|
.align 5
|
||||||
|
@ -197,15 +236,21 @@ _content_headers:
|
||||||
/* spl content header */
|
/* spl content header */
|
||||||
.word __spl_kip_start__
|
.word __spl_kip_start__
|
||||||
.word __spl_kip_size__
|
.word __spl_kip_size__
|
||||||
.word CONTENT_TYPE_KIP
|
.byte CONTENT_TYPE_KIP
|
||||||
|
.byte CONTENT_FLAG_NONE
|
||||||
|
.byte CONTENT_FLAG_NONE
|
||||||
|
.byte CONTENT_FLAG_NONE
|
||||||
.word 0xCCCCCCCC
|
.word 0xCCCCCCCC
|
||||||
.asciz "spl"
|
.asciz "spl"
|
||||||
.align 5
|
.align 5
|
||||||
|
|
||||||
/* spl content header */
|
/* ncm content header */
|
||||||
.word __ncm_kip_start__
|
.word __ncm_kip_start__
|
||||||
.word __ncm_kip_size__
|
.word __ncm_kip_size__
|
||||||
.word CONTENT_TYPE_KIP
|
.byte CONTENT_TYPE_KIP
|
||||||
|
.byte CONTENT_FLAG0_EXPERIMENTAL
|
||||||
|
.byte CONTENT_FLAG_NONE
|
||||||
|
.byte CONTENT_FLAG_NONE
|
||||||
.word 0xCCCCCCCC
|
.word 0xCCCCCCCC
|
||||||
.asciz "NCM"
|
.asciz "NCM"
|
||||||
.align 5
|
.align 5
|
||||||
|
@ -213,7 +258,10 @@ _content_headers:
|
||||||
/* emummc content header */
|
/* emummc content header */
|
||||||
.word __emummc_kip_start__
|
.word __emummc_kip_start__
|
||||||
.word __emummc_kip_size__
|
.word __emummc_kip_size__
|
||||||
.word CONTENT_TYPE_EMC
|
.byte CONTENT_TYPE_EMC
|
||||||
|
.byte CONTENT_FLAG_NONE
|
||||||
|
.byte CONTENT_FLAG_NONE
|
||||||
|
.byte CONTENT_FLAG_NONE
|
||||||
.word 0xCCCCCCCC
|
.word 0xCCCCCCCC
|
||||||
.asciz "emummc"
|
.asciz "emummc"
|
||||||
.align 5
|
.align 5
|
||||||
|
@ -221,7 +269,10 @@ _content_headers:
|
||||||
/* kernel_ldr content header */
|
/* kernel_ldr content header */
|
||||||
.word __kernel_ldr_bin_start__
|
.word __kernel_ldr_bin_start__
|
||||||
.word __kernel_ldr_bin_size__
|
.word __kernel_ldr_bin_size__
|
||||||
.word CONTENT_TYPE_KLD
|
.byte CONTENT_TYPE_KLD
|
||||||
|
.byte CONTENT_FLAG_NONE
|
||||||
|
.byte CONTENT_FLAG_NONE
|
||||||
|
.byte CONTENT_FLAG_NONE
|
||||||
.word 0xCCCCCCCC
|
.word 0xCCCCCCCC
|
||||||
.asciz "kernel_ldr"
|
.asciz "kernel_ldr"
|
||||||
.align 5
|
.align 5
|
||||||
|
@ -230,6 +281,9 @@ _content_headers:
|
||||||
.word __splash_screen_bmp_start__
|
.word __splash_screen_bmp_start__
|
||||||
.word __splash_screen_bmp_size__
|
.word __splash_screen_bmp_size__
|
||||||
.word CONTENT_TYPE_BMP
|
.word CONTENT_TYPE_BMP
|
||||||
|
.byte CONTENT_FLAG_NONE
|
||||||
|
.byte CONTENT_FLAG_NONE
|
||||||
|
.byte CONTENT_FLAG_NONE
|
||||||
.word 0xCCCCCCCC
|
.word 0xCCCCCCCC
|
||||||
.asciz "splash_screen"
|
.asciz "splash_screen"
|
||||||
.align 5
|
.align 5
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"name": "ProcessMana",
|
"name": "ProcessManager",
|
||||||
"title_id": "0x0100000000000003",
|
"title_id": "0x0100000000000003",
|
||||||
"main_thread_stack_size": "0x00002000",
|
"main_thread_stack_size": "0x00002000",
|
||||||
"main_thread_priority": 49,
|
"main_thread_priority": 49,
|
||||||
|
|
Loading…
Reference in a new issue