2018-09-07 16:00:13 +01:00
|
|
|
/*
|
2020-01-24 10:10:40 +00:00
|
|
|
* Copyright (c) 2018-2020 Atmosphère-NX
|
2018-09-07 16:00:13 +01:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms and conditions of the GNU General Public License,
|
|
|
|
* version 2, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
|
|
* more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2020-05-11 23:02:10 +01:00
|
|
|
#include <stratosphere.hpp>
|
2019-06-29 10:20:36 +01:00
|
|
|
#include "pm_boot_mode_service.hpp"
|
2018-05-03 09:58:11 +01:00
|
|
|
|
2019-10-24 10:30:10 +01:00
|
|
|
namespace ams::pm::bm {
|
2018-05-03 09:58:11 +01:00
|
|
|
|
2019-06-29 10:20:36 +01:00
|
|
|
namespace {
|
2018-05-03 09:58:11 +01:00
|
|
|
|
2019-06-29 10:20:36 +01:00
|
|
|
/* Global bootmode. */
|
|
|
|
BootMode g_boot_mode = BootMode::Normal;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Override of weakly linked boot_mode_api functions. */
|
|
|
|
BootMode GetBootMode() {
|
|
|
|
return g_boot_mode;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetMaintenanceBoot() {
|
|
|
|
g_boot_mode = BootMode::Maintenance;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Service command implementations. */
|
2019-10-15 06:49:06 +01:00
|
|
|
void BootModeService::GetBootMode(sf::Out<u32> out) {
|
2019-06-29 10:20:36 +01:00
|
|
|
out.SetValue(static_cast<u32>(pm::bm::GetBootMode()));
|
|
|
|
}
|
|
|
|
|
|
|
|
void BootModeService::SetMaintenanceBoot() {
|
|
|
|
pm::bm::SetMaintenanceBoot();
|
|
|
|
}
|
2019-01-22 07:31:59 +00:00
|
|
|
|
|
|
|
}
|