pm: add support for maintenance mode

This commit is contained in:
Michael Scire 2019-01-21 23:31:59 -08:00
parent 24f74312f2
commit 8a73ad996a
3 changed files with 48 additions and 3 deletions

View file

@ -27,3 +27,7 @@ void BootModeService::GetBootMode(Out<u32> out) {
void BootModeService::SetMaintenanceBoot() {
g_is_maintenance_boot = true;
}
void BootModeService::SetMaintenanceBootForEmbeddedBoot2() {
g_is_maintenance_boot = true;
}