summaryrefslogtreecommitdiffstatshomepage
path: root/docs/library/uos.rst
diff options
context:
space:
mode:
authorPaul Sokolovsky <pfalcon@users.sourceforge.net>2017-06-03 13:51:13 +0300
committerPaul Sokolovsky <pfalcon@users.sourceforge.net>2017-06-03 13:51:13 +0300
commit1ce44f30467e4882580ca8545f15ba7d882cb428 (patch)
tree8e42b4e646a5d3d323cbf0ccdf8d057df1dfc792 /docs/library/uos.rst
parent92206a78aeddf81eca08fb25589231e5a62df69c (diff)
downloadmicropython-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/library/uos.rst')
-rw-r--r--docs/library/uos.rst21
1 files changed, 1 insertions, 20 deletions
diff --git a/docs/library/uos.rst b/docs/library/uos.rst
index d1f83d2cc3..82ed5dbc93 100644
--- a/docs/library/uos.rst
+++ b/docs/library/uos.rst
@@ -4,28 +4,9 @@
.. module:: uos
:synopsis: basic "operating system" services
-The ``os`` module contains functions for filesystem access and ``urandom``
+The ``uos`` module contains functions for filesystem access and ``urandom``
function.
-Port specifics
---------------
-
-The filesystem has ``/`` as the root directory and the
-available physical drives are accessible from here. They are currently:
-
- ``/flash`` -- the internal flash filesystem
-
- ``/sd`` -- the SD card (if it exists)
-
-.. only:: port_pyboard
-
- On boot up, the current directory is ``/flash`` if no SD card is inserted,
- otherwise it is ``/sd``.
-
-.. only:: port_wipy
-
- On boot up, the current directory is ``/flash``.
-
Functions
---------