sysupdater: make GetUpdateInformation work on hardware.

This commit is contained in:
Michael Scire 2020-06-26 04:34:26 -07:00 committed by SciresM
parent a6218ed814
commit 3324dd52ef
5 changed files with 37 additions and 8 deletions

View file

@ -82,6 +82,7 @@ void __appInit(void) {
R_ABORT_UNLESS(fsInitialize());
R_ABORT_UNLESS(pmdmntInitialize());
R_ABORT_UNLESS(pminfoInitialize());
ncm::Initialize();
spl::InitializeForFs();
});
@ -97,6 +98,7 @@ void __appInit(void) {
void __appExit(void) {
/* Cleanup services. */
spl::Finalize();
ncm::Finalize();
pminfoExit();
pmdmntExit();
fsExit();