diff options
author | Christopher Arndt <chris@chrisarndt.de> | 2016-03-08 08:22:00 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2016-03-11 10:07:02 +0000 |
commit | 3d0e3a3d3eb3079599de63f2a232b5cf4b26399f (patch) | |
tree | 5a2025c6da8a8b049a64cc24059da14be6e4da24 | |
parent | 932f07ccf5efc9938d1f030e17e13a8bf4f72e52 (diff) | |
download | micropython-3d0e3a3d3eb3079599de63f2a232b5cf4b26399f.tar.gz micropython-3d0e3a3d3eb3079599de63f2a232b5cf4b26399f.zip |
esp8266: Mention git submodule in build instructions for esp8266 port.
-rw-r--r-- | esp8266/README.md | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/esp8266/README.md b/esp8266/README.md index 679461755d..c4573baa5d 100644 --- a/esp8266/README.md +++ b/esp8266/README.md @@ -32,8 +32,16 @@ found at <https://github.com/pfalcon/esp-open-sdk>. Clone this repository and run `make` in its directory to build and install the SDK locally. Make sure to add toolchain bin directory to your PATH. +Add the external dependencies to the MicroPython repository checkout: +```bash +$ git submodule update --init +``` +See the README in the repository root for more information about external +dependencies. + Then, to build MicroPython for the ESP8266, just run: ```bash +$ cd esp8266 $ make ``` This should produce binary images in the `build/` subdirectory. To flash them |