mirror of
https://github.com/micropython/micropython.git
synced 2025-09-05 01:10:36 +02:00
12 lines
389 B
Plaintext
12 lines
389 B
Plaintext
[]
|
|
mount Filesystem(1)
|
|
[(Filesystem(1), '/foo')]
|
|
mount Filesystem(2)
|
|
[(Filesystem(1), '/foo'), (Filesystem(2), '/bar/baz')]
|
|
mount Filesystem(3)
|
|
[(Filesystem(1), '/foo'), (Filesystem(2), '/bar/baz'), (Filesystem(3), '/bar')]
|
|
umount Filesystem(2)
|
|
[(Filesystem(1), '/foo'), (Filesystem(3), '/bar')]
|
|
mount Filesystem(4)
|
|
[(Filesystem(1), '/foo'), (Filesystem(3), '/bar'), (Filesystem(4), '/')]
|