diff options
author | Rene Straub <rene@see5.ch> | 2023-08-04 12:27:37 +0200 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2023-08-04 21:45:31 +1000 |
commit | 7fad499d1e4d31ffdd4a93a61a9c604189636e3c (patch) | |
tree | 79ce8aeb7648c9e5eaddd30d4a5cd69269ebab57 /docs/develop | |
parent | 2dcd745434757cf0737d5edd7d841aae1e4bffa4 (diff) |
docs/develop/gettingstarted: Clarify submodule initialization.
When building for a specific board this must be specified in make
submodules. I.e. make BOARD=STM32F769DISC submodules.
Signed-off-by: Rene Straub <rene@see5.ch>
Diffstat (limited to 'docs/develop')
-rw-r--r-- | docs/develop/gettingstarted.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/develop/gettingstarted.rst b/docs/develop/gettingstarted.rst index c2d3816d4..c51cac360 100644 --- a/docs/develop/gettingstarted.rst +++ b/docs/develop/gettingstarted.rst @@ -228,7 +228,7 @@ You can also specify which board to use: .. code-block:: bash $ cd ports/stm32 - $ make submodules + $ make BOARD=<board> submodules $ make BOARD=<board> See `ports/stm32/boards <https://github.com/micropython/micropython/tree/master/ports/stm32/boards>`_ |