@@ -38,6 +38,8 @@ if ! grep esp32-camera "$idfile"; then
3838echo " Adding esp32-camera to$idfile "
3939echo " espressif/esp32-camera:
4040 git: https://github.com/MicroPythonOS/esp32-camera" >> " $idfile "
41+ echo " Resulting file:"
42+ cat" $idfile "
4143else
4244echo " No need to add esp32-camera to$idfile "
4345fi
@@ -48,7 +50,10 @@ rellvglmani=lvgl_micropython/build/manifest.py
4850if ! grep" $rellvglmani " " $idfile " ; then
4951abslvglmani=" $codebasedir " /" $rellvglmani "
5052echo " Adding include(\" $abslvglmani \" ) to$camani "
53+ echo >> " $camani " # needs newline because file doesn't have newline at the end
5154echo " include(\" $abslvglmani \" ) # workaround to prevent micropython-camera-API from overriding the lvgl_micropython manifest..." >> " $camani "
55+ echo " Resulting file:"
56+ cat" $camani "
5257else
5358echo " No need to add include(\" $abslvglmani \" ) to$camani "
5459fi
@@ -58,6 +63,8 @@ manifile="$codebasedir"/lvgl_micropython/lib/micropython/ports/unix/variants/man
5863if ! grep asyncio" $manifile " ; then
5964echo " Adding asyncio to$manifile "
6065echo ' include("$(MPY_DIR)/extmod/asyncio") # needed to have asyncio, which is used by aiohttp, which has used by websockets' >> " $manifile "
66+ echo " Resulting file:"
67+ cat" $manifile "
6168else
6269echo " No need to add asyncio to$manifile "
6370fi
@@ -68,7 +75,6 @@ ln -sf ../../secp256k1-embedded-ecdh "$codebasedir"/lvgl_micropython/ext_mod/sec
6875echo " Symlinking c_mpos for unix and macOS builds..."
6976ln -sf ../../c_mpos" $codebasedir " /lvgl_micropython/ext_mod/c_mpos
7077
71-
7278if [" $buildtype " == " prod" ]; then
7379freezefs=" $codebasedir " /scripts/freezefs_mount_builtin.sh
7480echo " It's a$buildtype build, running$freezefs "