File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -151,7 +151,7 @@ if [ "$BUILD_TYPE" != "all" ]; then
151151
152152 echo " idf.py -DIDF_TARGET=\" $target \" -DSDKCONFIG_DEFAULTS=\" $configs \" $BUILD_TYPE "
153153 rm -rf build sdkconfig
154- COMPONENTS_SUBSET=full idf.py -DIDF_TARGET=" $target " -DSDKCONFIG_DEFAULTS=" $configs " $BUILD_TYPE
154+ idf.py -DIDF_TARGET=" $target " -DSDKCONFIG_DEFAULTS=" $configs " $BUILD_TYPE
155155 if [ $? -ne 0 ]; then exit 1; fi
156156 done
157157 exit 0
@@ -214,7 +214,7 @@ for target_json in `jq -c '.targets[]' configs/builds.json`; do
214214
215215 echo " * Build IDF-Libs: $idf_libs_configs "
216216 rm -rf build sdkconfig
217- COMPONENTS_SUBSET=full idf.py -DIDF_TARGET=" $target " -DSDKCONFIG_DEFAULTS=" $idf_libs_configs " idf-libs
217+ idf.py -DIDF_TARGET=" $target " -DSDKCONFIG_DEFAULTS=" $idf_libs_configs " idf-libs
218218 if [ $? -ne 0 ]; then exit 1; fi
219219
220220 # Build Bootloaders
@@ -226,7 +226,7 @@ for target_json in `jq -c '.targets[]' configs/builds.json`; do
226226
227227 echo " * Build BootLoader: $bootloader_configs "
228228 rm -rf build sdkconfig
229- COMPONENTS_SUBSET=none idf.py -DIDF_TARGET=" $target " -DSDKCONFIG_DEFAULTS=" $bootloader_configs " copy-bootloader
229+ idf.py -DIDF_TARGET=" $target " -DSDKCONFIG_DEFAULTS=" $bootloader_configs " copy-bootloader
230230 if [ $? -ne 0 ]; then exit 1; fi
231231 done
232232
@@ -239,7 +239,7 @@ for target_json in `jq -c '.targets[]' configs/builds.json`; do
239239
240240 echo " * Build Memory Variant: $mem_configs "
241241 rm -rf build sdkconfig
242- COMPONENTS_SUBSET=none idf.py -DIDF_TARGET=" $target " -DSDKCONFIG_DEFAULTS=" $mem_configs " mem-variant
242+ idf.py -DIDF_TARGET=" $target " -DSDKCONFIG_DEFAULTS=" $mem_configs " mem-variant
243243 if [ $? -ne 0 ]; then exit 1; fi
244244 done
245245done
You can’t perform that action at this time.
0 commit comments