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 @@ -151,7 +151,7 @@ if [ "$BUILD_TYPE" != "all" ]; then
151
151
152
152
echo " idf.py -DIDF_TARGET=\" $target \" -DSDKCONFIG_DEFAULTS=\" $configs \" $BUILD_TYPE "
153
153
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
155
155
if [ $? -ne 0 ]; then exit 1; fi
156
156
done
157
157
exit 0
@@ -214,7 +214,7 @@ for target_json in `jq -c '.targets[]' configs/builds.json`; do
214
214
215
215
echo " * Build IDF-Libs: $idf_libs_configs "
216
216
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
218
218
if [ $? -ne 0 ]; then exit 1; fi
219
219
220
220
# Build Bootloaders
@@ -226,7 +226,7 @@ for target_json in `jq -c '.targets[]' configs/builds.json`; do
226
226
227
227
echo " * Build BootLoader: $bootloader_configs "
228
228
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
230
230
if [ $? -ne 0 ]; then exit 1; fi
231
231
done
232
232
@@ -239,7 +239,7 @@ for target_json in `jq -c '.targets[]' configs/builds.json`; do
239
239
240
240
echo " * Build Memory Variant: $mem_configs "
241
241
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
243
243
if [ $? -ne 0 ]; then exit 1; fi
244
244
done
245
245
done
You can’t perform that action at this time.
0 commit comments