sysupdater: make GetUpdateInformation work on hardware.

This commit is contained in:
Michael Scire
2020-06-26 04:34:26 -07:00
parent dc9c9284e2
commit 4291d81642
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();