18 lines
337 B
Python
18 lines
337 B
Python
# deck.fs: FS interaction helpers (WIP)
|
|
# Created by Luxferre in 2025, released into public domain
|
|
|
|
MCU_STORAGE = False
|
|
try:
|
|
import storage
|
|
MCU_STORAGE = True
|
|
except:
|
|
pass
|
|
|
|
def unlock_rootfs():
|
|
if MCU_STORAGE:
|
|
storage.remount("/", readonly=False)
|
|
|
|
def lock_rootfs():
|
|
if MCU_STORAGE:
|
|
storage.remount("/", readonly=True)
|