@@ -95,30 +95,6 @@ if [ -f "$AR_COMPS/esp-dl/idf_component.yml" ]; then
95
95
rm -rf " $AR_COMPS /esp-dl/idf_component.yml"
96
96
fi
97
97
98
- #
99
- # CLONE/UPDATE ESP-SR
100
- #
101
- # echo "Updating ESP-SR..."
102
- # if [ ! -d "$AR_COMPS/esp-sr" ]; then
103
- # git clone $SR_REPO_URL "$AR_COMPS/esp-sr"
104
- # else
105
- # git -C "$AR_COMPS/esp-sr" fetch && \
106
- # git -C "$AR_COMPS/esp-sr" pull --ff-only
107
- # fi
108
- # if [ $? -ne 0 ]; then exit 1; fi
109
-
110
- #
111
- # CLONE/UPDATE ESP-DSP
112
- #
113
- echo " Updating ESP-DSP..."
114
- if [ ! -d " $AR_COMPS /espressif__esp-dsp" ]; then
115
- git clone $DSP_REPO_URL " $AR_COMPS /espressif__esp-dsp"
116
- else
117
- git -C " $AR_COMPS /espressif__esp-dsp" fetch && \
118
- git -C " $AR_COMPS /espressif__esp-dsp" pull --ff-only
119
- fi
120
- if [ $? -ne 0 ]; then exit 1; fi
121
-
122
98
#
123
99
# CLONE/UPDATE ESP-LITTLEFS
124
100
#
@@ -144,3 +120,34 @@ else
144
120
git -C " $AR_COMPS /arduino_tinyusb/tinyusb" pull --ff-only
145
121
fi
146
122
if [ $? -ne 0 ]; then exit 1; fi
123
+
124
+ # #
125
+ # # CLONE/UPDATE ESP-SR
126
+ # #
127
+ # SR_REPO_URL="https://github.com/espressif/esp-sr.git"
128
+ # echo "Updating ESP-SR..."
129
+ # if [ ! -d "$AR_COMPS/esp-sr" ]; then
130
+ # git clone $SR_REPO_URL "$AR_COMPS/esp-sr"
131
+ # mv "$AR_COMPS/esp-sr/CMakeLists.txt" "$AR_COMPS/esp-sr/CMakeListsOld.txt"
132
+ # echo "if(IDF_TARGET STREQUAL \"esp32s3\")" > "$AR_COMPS/esp-sr/CMakeLists.txt"
133
+ # cat "$AR_COMPS/esp-sr/CMakeListsOld.txt" >> "$AR_COMPS/esp-sr/CMakeLists.txt"
134
+ # echo "endif()" >> "$AR_COMPS/esp-sr/CMakeLists.txt"
135
+ # else
136
+ # git -C "$AR_COMPS/esp-sr" fetch && \
137
+ # git -C "$AR_COMPS/esp-sr" pull --ff-only
138
+ # fi
139
+ # if [ $? -ne 0 ]; then exit 1; fi
140
+
141
+ # #
142
+ # # CLONE/UPDATE ESP-DSP
143
+ # #
144
+ # DSP_REPO_URL="https://github.com/espressif/esp-dsp.git"
145
+ # echo "Updating ESP-DSP..."
146
+ # if [ ! -d "$AR_COMPS/espressif__esp-dsp" ]; then
147
+ # git clone $DSP_REPO_URL "$AR_COMPS/espressif__esp-dsp"
148
+ # else
149
+ # git -C "$AR_COMPS/espressif__esp-dsp" fetch && \
150
+ # git -C "$AR_COMPS/espressif__esp-dsp" pull --ff-only
151
+ # fi
152
+ # if [ $? -ne 0 ]; then exit 1; fi
153
+
0 commit comments