mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-08 13:11:49 +00:00
boot2: launch omm before am
This commit is contained in:
parent
f466f9e825
commit
c04ebf10a0
2 changed files with 4 additions and 0 deletions
|
@ -96,6 +96,7 @@ namespace ams::ncm {
|
|||
static const SystemProgramId Nd;
|
||||
static const SystemProgramId Ngct;
|
||||
static const SystemProgramId Pgl;
|
||||
static const SystemProgramId Omm;
|
||||
|
||||
static const SystemProgramId End;
|
||||
|
||||
|
@ -201,6 +202,7 @@ namespace ams::ncm {
|
|||
inline constexpr const SystemProgramId SystemProgramId::Nd = { 0x0100000000000040ul };
|
||||
inline constexpr const SystemProgramId SystemProgramId::Ngct = { 0x0100000000000041ul };
|
||||
inline constexpr const SystemProgramId SystemProgramId::Pgl = { 0x0100000000000042ul };
|
||||
inline constexpr const SystemProgramId SystemProgramId::Omm = { 0x0100000000000045ul };
|
||||
|
||||
inline constexpr const SystemProgramId SystemProgramId::End = { 0x01000000000007FFul };
|
||||
|
||||
|
|
|
@ -34,6 +34,7 @@ namespace ams::boot2 {
|
|||
constexpr size_t NumPreSdCardLaunchPrograms = util::size(PreSdCardLaunchPrograms);
|
||||
|
||||
constexpr const ncm::SystemProgramId AdditionalLaunchPrograms[] = {
|
||||
ncm::SystemProgramId::Omm, /* omm */
|
||||
ncm::SystemProgramId::Am, /* am */
|
||||
ncm::SystemProgramId::NvServices, /* nvservices */
|
||||
ncm::SystemProgramId::NvnFlinger, /* nvnflinger */
|
||||
|
@ -77,6 +78,7 @@ namespace ams::boot2 {
|
|||
constexpr size_t NumAdditionalLaunchPrograms = util::size(AdditionalLaunchPrograms);
|
||||
|
||||
constexpr const ncm::SystemProgramId AdditionalMaintenanceLaunchPrograms[] = {
|
||||
ncm::SystemProgramId::Omm, /* omm */
|
||||
ncm::SystemProgramId::Am, /* am */
|
||||
ncm::SystemProgramId::NvServices, /* nvservices */
|
||||
ncm::SystemProgramId::NvnFlinger, /* nvnflinger */
|
||||
|
|
Loading…
Reference in a new issue