Skip to content

Commit f50ebdb

Browse files
Rename build_lvgl_micropython.sh to build_mpos.sh
1 parent 17619bb commit f50ebdb

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

docs/os-development/compiling.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
1313
<pre>
1414
```
15-
./scripts/build_lvgl_micropython.sh <target system> <build type (prod or dev)> [optional target device]
15+
./scripts/build_mpos.sh <target system> <build type (prod or dev)> [optional target device]
1616
```
1717
</pre>
1818
@@ -31,10 +31,10 @@
3131
3232
<pre>
3333
```
34-
./scripts/build_lvgl_micropython.sh esp32 prod fri3d-2024
35-
./scripts/build_lvgl_micropython.sh esp32 dev waveshare-esp32-s3-touch-lcd-2
36-
./scripts/build_lvgl_micropython.sh esp32 unix dev
37-
./scripts/build_lvgl_micropython.sh esp32 macOS dev
34+
./scripts/build_mpos.sh esp32 prod fri3d-2024
35+
./scripts/build_mpos.sh esp32 dev waveshare-esp32-s3-touch-lcd-2
36+
./scripts/build_mpos.sh esp32 unix dev
37+
./scripts/build_mpos.sh esp32 macOS dev
3838
```
3939
</pre>
4040

docs/os-development/linux.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ sudo apt-get install -y build-essential libffi-dev pkg-config cmake ninja-build
2222
```
2323

2424

25-
2625
{!os-development/compiling.md!}
2726

2827
{!os-development/running-on-desktop.md!}

docs/os-development/porting-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ By design, the only device-specific code for MicroPythonOS is found in the ```in
1818

1919
The goal is to have it boot and show a MicroPython REPL shell on the serial line.
2020

21-
Take a look at our [build_lvgl_micropython.sh](https://github.com/MicroPythonOS/MicroPythonOS/blob/main/scripts/build_lvgl_micropython.sh) script. A "dev" build (without any "frozen" filesystem) is preferred as this will still change a lot.
21+
Take a look at our [build_mpos.sh](https://github.com/MicroPythonOS/MicroPythonOS/blob/main/scripts/build_mpos.sh) script. A "dev" build (without any "frozen" filesystem) is preferred as this will still change a lot.
2222

2323
Also go over the [official lvgl_micropython documentation](https://github.com/lvgl-micropython/lvgl_micropython/blob/main/README.md) for porting instructions. If you're in luck, your device is already listed in the esp32 BOARD list. Otherwise use a generic one like `BOARD=ESP32_GENERIC` with `BOARD_VARIANT=SPIRAM` or `BOARD=ESP32_GENERIC_S3` with `BOARD_VARIANT=SPIRAM_OCT` if it has an SPIRAM.
2424

0 commit comments

Comments
 (0)