mirror of
https://github.com/micropython/micropython.git
synced 2026-05-01 21:30:14 +02:00
9fcc25b9d7
Signed-off-by: Anson Mansfield <amansfield@mantaro.com>
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), '/')]
|