Use more efficient set of steps when cloning

This commit is contained in:
embeddedt 2022-01-14 15:05:41 -05:00 committed by Amir Gonnen
parent d8a68915ba
commit 6e3512ef02

View File

@ -30,11 +30,13 @@ If you are only starting with Micropython+LVGL, it's recommended that you use `l
1. `sudo apt-get install build-essential libreadline-dev libffi-dev git pkg-config libsdl2-2.0-0 libsdl2-dev python3.8 parallel`
Python 3 is required, but you can install some other version of python3 instead of 3.8, if needed.
2. `git clone --recurse-submodules https://github.com/lvgl/lv_micropython.git`
2. `git clone https://github.com/lvgl/lv_micropython.git`
3. `cd lv_micropython`
4. `make -C mpy-cross`
5. `make -C ports/unix/`
6. `./ports/unix/micropython`
4. `git submodule update --init --recursive lib/lv_bindings`
5. `make -C mpy-cross`
6. `make -C ports/unix submodules`
7. `make -C ports/unix`
8. `./ports/unix/micropython`
### ESP32 port