Skip to content

Commit 505b8ac

Browse files
Fix syntax
1 parent 62e548c commit 505b8ac

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

scripts/build_mpos.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,6 @@ if [ "$target" == "esp32" -o "$target" == "esp32s3" ]; then
9797
# These options disable hardware AES, SHA and MPI because they give warnings in QEMU: [AES] Error reading from GDMA buffer
9898
# There's a 25% https download speed penalty for this, but that's usually not the bottleneck.
9999
extra_configs="CONFIG_MBEDTLS_HARDWARE_AES=n CONFIG_MBEDTLS_HARDWARE_SHA=n CONFIG_MBEDTLS_HARDWARE_MPI=n"
100-
fi
101100
fi
102101
manifest=$(readlink -f "$codebasedir"/manifests/manifest.py)
103102
frozenmanifest="FROZEN_MANIFEST=$manifest" # Comment this out if you want to make a build without any frozen files, just an empty MicroPython + whatever files you have on the internal storage
@@ -129,7 +128,7 @@ if [ "$target" == "esp32" -o "$target" == "esp32s3" ]; then
129128
CONFIG_FREERTOS_VTASKLIST_INCLUDE_COREID=y \
130129
CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS=y \
131130
CONFIG_ADC_MIC_TASK_CORE=1 \
132-
$extra_configs \
131+
$extra_configs \
133132
"$frozenmanifest"
134133

135134
popd

0 commit comments

Comments
 (0)