mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2024-11-09 22:56:35 +00:00
boot2: migration also not launched in 12.0.0
This commit is contained in:
parent
c67c29ebd5
commit
9d30917f4e
1 changed files with 2 additions and 3 deletions
|
@ -71,7 +71,6 @@ namespace ams::boot2 {
|
|||
ncm::SystemProgramId::Ro, /* ro */
|
||||
ncm::SystemProgramId::Profiler, /* profiler */
|
||||
ncm::SystemProgramId::Sdb, /* sdb */
|
||||
ncm::SystemProgramId::Migration, /* migration */
|
||||
ncm::SystemProgramId::Olsc, /* olsc */
|
||||
ncm::SystemProgramId::Ngct, /* ngct */
|
||||
};
|
||||
|
@ -111,7 +110,6 @@ namespace ams::boot2 {
|
|||
ncm::SystemProgramId::Ro, /* ro */
|
||||
ncm::SystemProgramId::Profiler, /* profiler */
|
||||
ncm::SystemProgramId::Sdb, /* sdb */
|
||||
ncm::SystemProgramId::Migration, /* migration */
|
||||
ncm::SystemProgramId::Olsc, /* olsc */
|
||||
ncm::SystemProgramId::Ngct, /* ngct */
|
||||
};
|
||||
|
@ -484,9 +482,10 @@ namespace ams::boot2 {
|
|||
LaunchList(AdditionalLaunchPrograms, NumAdditionalLaunchPrograms);
|
||||
}
|
||||
|
||||
/* Prior to 12.0.0, boot2 was responsible for launching grc. */
|
||||
/* Prior to 12.0.0, boot2 was responsible for launching grc and migration. */
|
||||
if (hos::GetVersion() < hos::Version_12_0_0) {
|
||||
LaunchProgram(nullptr, ncm::ProgramLocation::Make(ncm::SystemProgramId::Grc, ncm::StorageId::BuiltInSystem), 0);
|
||||
LaunchProgram(nullptr, ncm::ProgramLocation::Make(ncm::SystemProgramId::Migration, ncm::StorageId::BuiltInSystem), 0);
|
||||
}
|
||||
|
||||
/* Launch user programs off of the SD. */
|
||||
|
|
Loading…
Reference in a new issue