summaryrefslogtreecommitdiff
path: root/tcwg_bmk-build.sh
diff options
context:
space:
mode:
authorChristophe Lyon <christophe.lyon@linaro.org>2021-02-12 12:55:17 +0000
committerChristophe Lyon <christophe.lyon@linaro.org>2021-02-12 12:56:06 +0000
commitc9faad46f173b3332454a7aec64cc6e8ac926ad4 (patch)
tree8341b00fe54df488699cbf46b039948c0a2651cc /tcwg_bmk-build.sh
parenta0f9261b99ab947fc997d32d2397734f18b10471 (diff)
tcwg_bmk-build.sh: Prefix results_id with stm32_ for arm_eabi
The tcwg-benchmark-bare.sh script expects results_id to start with the "stm32" string, so use it as a prefix. Keep the existing STM32XXXXX as it will be useful when we have different board types. Change-Id: Iae77f6789cb85115857a906ee76168b40321228e
Diffstat (limited to 'tcwg_bmk-build.sh')
-rwxr-xr-xtcwg_bmk-build.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tcwg_bmk-build.sh b/tcwg_bmk-build.sh
index 5c1197e3..71e987db 100755
--- a/tcwg_bmk-build.sh
+++ b/tcwg_bmk-build.sh
@@ -239,7 +239,7 @@ benchmark ()
local hw results_top image_arch results_id
case "${rr[target]}" in
armv8*) hw=tx1; results_top=tx1_32; image_arch=armhf ;;
- arm_eabi) hw=stm32; results_top=STM32L476RGTx; image_arch=armhf ;;
+ arm_eabi) hw=stm32; results_top=stm32_STM32L476RGTx; image_arch=armhf ;;
arm*) hw=tk1; results_top=tk1_32; image_arch=armhf ;;
aarch64*) hw=tx1; results_top=tx1_64; image_arch=arm64 ;;
*) echo "ERROR: Unknown target ${rr[target]}"; exit 1 ;;