summaryrefslogtreecommitdiff
path: root/supervisor/shared/filesystem.c
diff options
context:
space:
mode:
authorScott Shawcroft <scott@tannewt.org>2018-11-14 17:59:11 -0800
committerScott Shawcroft <scott@tannewt.org>2018-11-14 17:59:11 -0800
commit87ddd64481ea139bd0638baa03f106f7fcc0501e (patch)
treeed6340b751afb0b2eae4b6dc5e015cc82f61a5a3 /supervisor/shared/filesystem.c
parent47212ee31e16c50e3c170514e1076a8651e22146 (diff)
Factor out fake partition
Diffstat (limited to 'supervisor/shared/filesystem.c')
-rw-r--r--supervisor/shared/filesystem.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/supervisor/shared/filesystem.c b/supervisor/shared/filesystem.c
index ebbc8c40d..de9af5707 100644
--- a/supervisor/shared/filesystem.c
+++ b/supervisor/shared/filesystem.c
@@ -59,7 +59,7 @@ void filesystem_init(bool create_allowed, bool force_create) {
// Flush the new file system to make sure it's repaired immediately.
supervisor_flash_flush();
if (res != FR_OK) {
- asm("bkpt");
+ //asm("bkpt");
return;
}
@@ -75,7 +75,7 @@ void filesystem_init(bool create_allowed, bool force_create) {
// and ensure everything is flushed
supervisor_flash_flush();
} else if (res != FR_OK) {
- asm("bkpt");
+ //asm("bkpt");
return;
}
mp_vfs_mount_t *vfs = &_mp_vfs;