You've already forked MicroPythonOS
mirror of
https://github.com/m5stack/MicroPythonOS.git
synced 2026-05-20 11:51:27 -07:00
Try to fix manifests
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
freeze('internal_filesystem/', 'boot.py') # Hardware initialization
|
||||
freeze('internal_filesystem/', 'main.py') # User Interface initialization
|
||||
freeze('internal_filesystem/lib', '') # Additional libraries
|
||||
freeze('freezeFS/', 'freezefs_mount_builtin.py') # Built-in apps
|
||||
freeze('../internal_filesystem/', 'boot.py') # Hardware initialization
|
||||
freeze('../internal_filesystem/', 'main.py') # User Interface initialization
|
||||
freeze('../internal_filesystem/lib', '') # Additional libraries
|
||||
freeze('../freezeFS/', 'freezefs_mount_builtin.py') # Built-in apps
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
freeze('/tmp/', 'boot.py') # Hardware initialization - this file is copied from boot_fri3d-2024.py to /tmp by the build script to have it named boot.py
|
||||
freeze('internal_filesystem/', 'main.py') # User Interface initialization
|
||||
freeze('internal_filesystem/lib', '') # Additional libraries
|
||||
freeze('freezeFS/', 'freezefs_mount_builtin.py') # Built-in apps
|
||||
freeze('../internal_filesystem/', 'main.py') # User Interface initialization
|
||||
freeze('../internal_filesystem/lib', '') # Additional libraries
|
||||
freeze('../freezeFS/', 'freezefs_mount_builtin.py') # Built-in apps
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
freeze('internal_filesystem/', 'boot_unix.py') # Hardware initialization
|
||||
freeze('internal_filesystem/', 'main.py') # User Interface initialization
|
||||
freeze('internal_filesystem/lib', '') # Additional libraries
|
||||
freeze('freezeFS/', 'freezefs_mount_builtin.py') # Built-in apps
|
||||
freeze('../internal_filesystem/', 'boot_unix.py') # Hardware initialization
|
||||
freeze('../internal_filesystem/', 'main.py') # User Interface initialization
|
||||
freeze('../internal_filesystem/lib', '') # Additional libraries
|
||||
freeze('../freezeFS/', 'freezefs_mount_builtin.py') # Built-in apps
|
||||
|
||||
@@ -47,8 +47,8 @@ fi
|
||||
echo "Check need to add lvgl_micropython manifest to micropython-camera-API's manifest..."
|
||||
camani="$codebasedir"/micropython-camera-API/src/manifest.py
|
||||
rellvglmani=lvgl_micropython/build/manifest.py
|
||||
abslvglmani="$codebasedir"/"$rellvglmani"
|
||||
if ! grep "$rellvglmani" "$camani"; then
|
||||
abslvglmani="$codebasedir"/"$rellvglmani"
|
||||
echo "Adding include(\"$abslvglmani\") to $camani"
|
||||
echo >> "$camani" # needs newline because file doesn't have newline at the end
|
||||
echo "include(\"$abslvglmani\") # workaround to prevent micropython-camera-API from overriding the lvgl_micropython manifest..." >> "$camani"
|
||||
|
||||
Reference in New Issue
Block a user