File tree Expand file tree Collapse file tree 1 file changed +17
-1
lines changed Expand file tree Collapse file tree 1 file changed +17
-1
lines changed Original file line number Diff line number Diff line change 2
2
3
3
source ./tools/config.sh
4
4
5
- # CAMERA_REPO_URL="https://github.com/espressif/esp32-camera.git"
5
+ CAMERA_REPO_URL=" https://github.com/espressif/esp32-camera.git"
6
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"
@@ -34,6 +34,22 @@ if [ "$AR_BRANCH" ]; then
34
34
fi
35
35
if [ $? -ne 0 ]; then exit 1; fi
36
36
37
+ #
38
+ # CLONE/UPDATE ESP32-CAMERA
39
+ #
40
+
41
+ if [ ! -d " $AR_COMPS /esp32-camera" ]; then
42
+ git clone $CAMERA_REPO_URL " $AR_COMPS /esp32-camera"
43
+ else
44
+ git -C " $AR_COMPS /esp32-camera" fetch && \
45
+ git -C " $AR_COMPS /esp32-camera" pull --ff-only
46
+ fi
47
+ # this is a temp measure to fix build issue in recent IDF master
48
+ if [ -f " $AR_COMPS /esp32-camera/idf_component.yml" ]; then
49
+ rm -rf " $AR_COMPS /esp32-camera/idf_component.yml"
50
+ fi
51
+ if [ $? -ne 0 ]; then exit 1; fi
52
+
37
53
#
38
54
# CLONE/UPDATE ESP-LITTLEFS
39
55
#
You can’t perform that action at this time.
0 commit comments