stratosphere: make tma non-kip, add to build system

This commit is contained in:
Michael Scire 2018-12-05 23:36:12 -08:00
parent 94e527e763
commit 907f6fa72d
6 changed files with 51 additions and 6 deletions

View file

@ -158,8 +158,11 @@ void EmbeddedBoot2::Main() {
/* Launch usb. */
LaunchTitle(Boot2KnownTitleId::usb, FsStorageId_NandSystem, 0, NULL);
/* Don't launch tma, because atmosphere replaces it with a KIP. */
/* LaunchTitle(Boot2KnownTitleId::tma, FsStorageId_NandSystem, 0, NULL); */
/* Launch Atmosphere tma, using FsStorageId_None to force SD card boot. */
LaunchTitle(Boot2KnownTitleId::tma, FsStorageId_None, 0, NULL);
/* Launch Atmosphere dmnt, using FsStorageId_None to force SD card boot. */
LaunchTitle(Boot2KnownTitleId::dmnt, FsStorageId_None, 0, NULL);
/* Launch default programs. */
bool maintenance = ShouldForceMaintenanceMode();