File tree 1 file changed +17
-1
lines changed
1 file changed +17
-1
lines changed Original file line number Diff line number Diff line change 3
3
source ./tools/config.sh
4
4
5
5
CAMERA_REPO_URL=" https://github.com/espressif/esp32-camera.git"
6
- # FACE_REPO_URL="https://github.com/espressif/esp-dl.git"
6
+ FACE_REPO_URL=" https://github.com/espressif/esp-dl.git"
7
7
# RMAKER_REPO_URL="https://github.com/espressif/esp-rainmaker.git"
8
8
DSP_REPO_URL=" https://github.com/espressif/esp-dsp.git"
9
9
LITTLEFS_REPO_URL=" https://github.com/joltwallet/esp_littlefs.git"
@@ -50,6 +50,22 @@ if [ -f "$AR_COMPS/esp32-camera/idf_component.yml" ]; then
50
50
fi
51
51
if [ $? -ne 0 ]; then exit 1; fi
52
52
53
+ #
54
+ # CLONE/UPDATE ESP-FACE
55
+ #
56
+
57
+ if [ ! -d " $AR_COMPS /esp-face" ]; then
58
+ git clone $FACE_REPO_URL " $AR_COMPS /esp-face"
59
+ # cml=`cat "$AR_COMPS/esp-face/CMakeLists.txt"`
60
+ # echo "if(IDF_TARGET STREQUAL \"esp32\" OR IDF_TARGET STREQUAL \"esp32s2\" OR IDF_TARGET STREQUAL \"esp32s3\")" > "$AR_COMPS/esp-face/CMakeLists.txt"
61
+ # echo "$cml" >> "$AR_COMPS/esp-face/CMakeLists.txt"
62
+ # echo "endif()" >> "$AR_COMPS/esp-face/CMakeLists.txt"
63
+ else
64
+ git -C " $AR_COMPS /esp-face" fetch && \
65
+ git -C " $AR_COMPS /esp-face" pull --ff-only
66
+ fi
67
+ if [ $? -ne 0 ]; then exit 1; fi
68
+
53
69
#
54
70
# CLONE/UPDATE ESP-LITTLEFS
55
71
#
You can’t perform that action at this time.
0 commit comments