2019-05-09 09:17:56 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2019 Atmosphère-NX
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
2019-06-22 08:10:21 +01:00
|
|
|
#include "boot_power_utils.hpp"
|
|
|
|
#include "boot_repair_boot_images.hpp"
|
|
|
|
|
2019-10-24 10:30:10 +01:00
|
|
|
namespace ams::boot {
|
2019-06-22 08:10:21 +01:00
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
/* Globals. */
|
2019-12-06 07:41:33 +00:00
|
|
|
alignas(os::MemoryPageSize) u8 g_boot_image_work_buffer[0x10000];
|
2019-05-09 09:17:56 +01:00
|
|
|
|
2019-06-22 08:10:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void CheckAndRepairBootImages() {
|
2019-06-22 19:34:18 +01:00
|
|
|
const auto boot_image_update_type = updater::GetBootImageUpdateType(spl::GetHardwareType());
|
2019-05-09 09:17:56 +01:00
|
|
|
|
2019-06-22 08:10:21 +01:00
|
|
|
bool repaired_normal, repaired_safe;
|
2019-06-22 08:14:24 +01:00
|
|
|
if (R_SUCCEEDED(updater::VerifyBootImagesAndRepairIfNeeded(&repaired_normal, &repaired_safe, g_boot_image_work_buffer, sizeof(g_boot_image_work_buffer), boot_image_update_type)) && repaired_normal) {
|
2019-06-22 08:10:21 +01:00
|
|
|
/* Nintendo only performs a reboot on successful normal repair. */
|
|
|
|
RebootSystem();
|
|
|
|
}
|
2019-05-09 09:17:56 +01:00
|
|
|
}
|
2019-06-22 08:10:21 +01:00
|
|
|
|
2019-05-09 09:17:56 +01:00
|
|
|
}
|