|
@ -29,8 +29,7 @@ def setup(): |
|
|
print("Performing initial setup") |
|
|
print("Performing initial setup") |
|
|
uos.VfsFat.mkfs(bdev) |
|
|
uos.VfsFat.mkfs(bdev) |
|
|
vfs = uos.VfsFat(bdev) |
|
|
vfs = uos.VfsFat(bdev) |
|
|
uos.mount(vfs, '/flash') |
|
|
uos.mount(vfs, '/') |
|
|
uos.chdir('/flash') |
|
|
|
|
|
with open("boot.py", "w") as f: |
|
|
with open("boot.py", "w") as f: |
|
|
f.write("""\ |
|
|
f.write("""\ |
|
|
# This file is executed on every boot (including wake-boot from deepsleep) |
|
|
# This file is executed on every boot (including wake-boot from deepsleep) |
|
|