From 9bac6e45197518864245f6399df62b81b45b716c Mon Sep 17 00:00:00 2001 From: xHR Date: Tue, 5 Mar 2019 19:55:05 +0200 Subject: [PATCH] =?UTF-8?q?Support=20for=20expanded=20NAND=20by=20robl?= =?UTF-8?q?=C3=A2bla?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- fusee/fusee-secondary/src/nxfs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fusee/fusee-secondary/src/nxfs.c b/fusee/fusee-secondary/src/nxfs.c index e7e72306c..0f11c22a3 100644 --- a/fusee/fusee-secondary/src/nxfs.c +++ b/fusee/fusee-secondary/src/nxfs.c @@ -316,7 +316,7 @@ int nxfs_mount_all(void) { model = g_mmc_devpart_template; model.device_struct = &g_emmc_user_mmcpart; model.start_sector = 0; - model.num_sectors = (32ull << 30) / model.sector_size; + model.num_sectors = (256ull << 30) / model.sector_size; rc = rawdev_mount_device("rawnand", &model, false);