File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -154,7 +154,7 @@ if [ "$BUILD_TYPE" != "all" ]; then
154
154
155
155
echo " idf.py -DIDF_TARGET=\" $target \" -DSDKCONFIG_DEFAULTS=\" $configs \" $BUILD_TYPE "
156
156
rm -rf build sdkconfig
157
- COMPONENTS_SUBSET=full idf.py -DIDF_TARGET=" $target " -DSDKCONFIG_DEFAULTS=" $configs " $BUILD_TYPE
157
+ idf.py -DIDF_TARGET=" $target " -DSDKCONFIG_DEFAULTS=" $configs " $BUILD_TYPE
158
158
if [ $? -ne 0 ]; then exit 1; fi
159
159
done
160
160
exit 0
@@ -217,7 +217,7 @@ for target_json in `jq -c '.targets[]' configs/builds.json`; do
217
217
218
218
echo " * Build IDF-Libs: $idf_libs_configs "
219
219
rm -rf build sdkconfig
220
- COMPONENTS_SUBSET=full idf.py -DIDF_TARGET=" $target " -DSDKCONFIG_DEFAULTS=" $idf_libs_configs " idf-libs
220
+ idf.py -DIDF_TARGET=" $target " -DSDKCONFIG_DEFAULTS=" $idf_libs_configs " idf-libs
221
221
if [ $? -ne 0 ]; then exit 1; fi
222
222
223
223
# Build Bootloaders
@@ -229,7 +229,7 @@ for target_json in `jq -c '.targets[]' configs/builds.json`; do
229
229
230
230
echo " * Build BootLoader: $bootloader_configs "
231
231
rm -rf build sdkconfig
232
- COMPONENTS_SUBSET=none idf.py -DIDF_TARGET=" $target " -DSDKCONFIG_DEFAULTS=" $bootloader_configs " copy-bootloader
232
+ idf.py -DIDF_TARGET=" $target " -DSDKCONFIG_DEFAULTS=" $bootloader_configs " copy-bootloader
233
233
if [ $? -ne 0 ]; then exit 1; fi
234
234
done
235
235
@@ -242,7 +242,7 @@ for target_json in `jq -c '.targets[]' configs/builds.json`; do
242
242
243
243
echo " * Build Memory Variant: $mem_configs "
244
244
rm -rf build sdkconfig
245
- COMPONENTS_SUBSET=none idf.py -DIDF_TARGET=" $target " -DSDKCONFIG_DEFAULTS=" $mem_configs " mem-variant
245
+ idf.py -DIDF_TARGET=" $target " -DSDKCONFIG_DEFAULTS=" $mem_configs " mem-variant
246
246
if [ $? -ne 0 ]; then exit 1; fi
247
247
done
248
248
done
You can’t perform that action at this time.
0 commit comments