Skip to content

Commit 1a773c4

Browse files
authored
revert rainmaker remove
1 parent 1f18f93 commit 1a773c4

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

tools/update-components.sh

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ source ./tools/config.sh
44

55
#CAMERA_REPO_URL="https://github.com/espressif/esp32-camera.git"
66
#FACE_REPO_URL="https://github.com/espressif/esp-dl.git"
7-
#RMAKER_REPO_URL="https://github.com/espressif/esp-rainmaker.git"
7+
RMAKER_REPO_URL="https://github.com/espressif/esp-rainmaker.git"
88
DSP_REPO_URL="https://github.com/espressif/esp-dsp.git"
99
LITTLEFS_REPO_URL="https://github.com/joltwallet/esp_littlefs.git"
1010
TINYUSB_REPO_URL="https://github.com/hathach/tinyusb.git"
@@ -50,6 +50,16 @@ else
5050
fi
5151
if [ $? -ne 0 ]; then exit 1; fi
5252

53+
#
54+
# CLONE/UPDATE ESP-RAINMAKER
55+
#
56+
57+
if [ ! -d "$AR_COMPS/esp-rainmaker" ]; then
58+
git clone $RMAKER_REPO_URL "$AR_COMPS/esp-rainmaker"
59+
git -C "$AR_COMPS/esp-rainmaker" checkout f1b82c71c4536ab816d17df016d8afe106bd60e3
60+
fi
61+
if [ $? -ne 0 ]; then exit 1; fi
62+
5363
#
5464
# CLONE/UPDATE ESP-DSP
5565
#

0 commit comments

Comments
 (0)