diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2017-06-03 13:51:13 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2017-06-03 13:51:13 +0300 |
commit | 1ce44f30467e4882580ca8545f15ba7d882cb428 (patch) | |
tree | 8e42b4e646a5d3d323cbf0ccdf8d057df1dfc792 /docs/pyboard/general.rst | |
parent | 92206a78aeddf81eca08fb25589231e5a62df69c (diff) | |
download | micropython-1ce44f30467e4882580ca8545f15ba7d882cb428.tar.gz micropython-1ce44f30467e4882580ca8545f15ba7d882cb428.zip |
docs/uos: Deconditionalize, remove minor port-specific details.
For a couple of ports, there was information which directory is set
as current after boot. This information doesn't belong to "uos" module,
and is moved to boards' references (which actually already contained
information on which directory is chosen for boot, even if without
explicit mentioning that it becomes current directory, which is now
done).
Diffstat (limited to 'docs/pyboard/general.rst')
-rw-r--r-- | docs/pyboard/general.rst | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/pyboard/general.rst b/docs/pyboard/general.rst index 48e0146442..1d040f6ccc 100644 --- a/docs/pyboard/general.rst +++ b/docs/pyboard/general.rst @@ -10,7 +10,9 @@ is inserted into the slot, it is available as ``/sd``. When the pyboard boots up, it needs to choose a filesystem to boot from. If there is no SD card, then it uses the internal filesystem ``/flash`` as the boot -filesystem, otherwise, it uses the SD card ``/sd``. +filesystem, otherwise, it uses the SD card ``/sd``. After the boot, the current +directory is set to one of the directories above. + If needed, you can prevent the use of the SD card by creating an empty file called ``/flash/SKIPSD``. If this file exists when the pyboard boots up then the SD card will be skipped and the pyboard will always boot from the |