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

@@ -43,10 +43,9 @@ namespace ams::fs {
}
Result MountSdCard(const char *name) {
/* Validate the mount name. */
R_TRY(impl::CheckMountName(name));
R_TRY(impl::CheckMountNameAllowingReserved(name));
/* Open the SD card. This uses libnx bindings. */
FsFileSystem fs;