|
1 | | -PiggyOS |
| 1 | +MicroPythonOS |
2 | 2 | ======= |
3 | 3 |
|
4 | 4 | This is an operating system for microcontrollers like the ESP32. |
@@ -50,43 +50,43 @@ Prepare all the sources: |
50 | 50 | mkdir ~/sources/ |
51 | 51 | cd ~/sources/ |
52 | 52 |
|
53 | | -git clone https://github.com/LightningPiggy/PiggyOS.git |
| 53 | +git clone https://github.com/MicroPythonOS/MicroPythonOS.git |
54 | 54 |
|
55 | 55 | git clone https://github.com/bixb922/freezeFS |
56 | | -~/sources/PiggyOS/scripts/freezefs_mount_builtin.sh |
| 56 | +~/sources/MicroPythonOS/scripts/freezefs_mount_builtin.sh |
57 | 57 |
|
58 | 58 | git clone https://github.com/cnadler86/micropython-camera-API |
59 | 59 | echo 'include("~/sources/lvgl_micropython/build/manifest.py")' >> micropython-camera-API/src/manifest.py |
60 | 60 |
|
61 | 61 | git clone https://github.com/lvgl-micropython/lvgl_micropython |
62 | | -cp ~/sources/PiggyOS/patches/lv_conf.h lvgl_micropython/lib/ |
| 62 | +cp ~/sources/MicroPythonOS/patches/lv_conf.h lvgl_micropython/lib/ |
63 | 63 |
|
64 | 64 | cd lvgl_micropython/lib/micropython |
65 | | -patch -p1 < ~/sources/PiggyOS/patches/lvgl_micropython*.patch |
| 65 | +patch -p1 < ~/sources/MicroPythonOS/patches/lvgl_micropython*.patch |
66 | 66 | ``` |
67 | 67 |
|
68 | 68 | Start the build: |
69 | 69 |
|
70 | 70 | ``` |
71 | | -~/sources/PiggyOS/scripts/build_lvgl_micropython.sh |
| 71 | +~/sources/MicroPythonOS/scripts/build_lvgl_micropython.sh |
72 | 72 | ``` |
73 | 73 |
|
74 | 74 | Or if you want to build for development, so without any preinstalled files, do: |
75 | 75 |
|
76 | 76 | ``` |
77 | | -~/sources/PiggyOS/scripts/build_lvgl_micropython.sh devbuild |
| 77 | +~/sources/MicroPythonOS/scripts/build_lvgl_micropython.sh devbuild |
78 | 78 | ``` |
79 | 79 |
|
80 | 80 | Now install it with: |
81 | 81 |
|
82 | 82 | ``` |
83 | | -~/sources/PiggyOS/scripts/flash_over_usb.sh |
| 83 | +~/sources/MicroPythonOS/scripts/flash_over_usb.sh |
84 | 84 | ``` |
85 | 85 |
|
86 | 86 | If you made a 'devbuild', then you probably want to install all files and apps manually: |
87 | 87 |
|
88 | 88 | ``` |
89 | | -~/sources/PiggyOS/scripts/install.sh |
| 89 | +~/sources/MicroPythonOS/scripts/install.sh |
90 | 90 | ``` |
91 | 91 |
|
92 | 92 | Release checklist |
@@ -114,13 +114,13 @@ To do so, make sure you have the necessary dependencies: |
114 | 114 | ...and then run: |
115 | 115 |
|
116 | 116 | ``` |
117 | | -~/sources/PiggyOS/scripts/build_lvgl_micropython.sh unix |
| 117 | +~/sources/MicroPythonOS/scripts/build_lvgl_micropython.sh unix |
118 | 118 | ``` |
119 | 119 |
|
120 | 120 | or |
121 | 121 |
|
122 | 122 | ``` |
123 | | -~/sources/PiggyOS/scripts/build_lvgl_micropython.sh macOS |
| 123 | +~/sources/MicroPythonOS/scripts/build_lvgl_micropython.sh macOS |
124 | 124 | ``` |
125 | 125 |
|
126 | 126 | To run it, it's recommended to symlink your ~/.micropython/lib folder into this project's lib: |
|
0 commit comments