mirror of https://github.com/wolfSSL/wolfBoot.git
19 lines
343 B
Bash
Executable File
19 lines
343 B
Bash
Executable File
#!/bin/bash
|
|
|
|
TARGETS="stm32f4 stm32f7 nrf52840 hifive1"
|
|
|
|
if (test -e .config); then
|
|
mv .config config.bak
|
|
fi
|
|
|
|
for cfg in $TARGETS; do
|
|
rm -f .config
|
|
echo testing on $cfg
|
|
cp config/examples/$cfg.config .config || exit 1
|
|
make renode-factory-all Q="@" || exit 2
|
|
done
|
|
|
|
if (test -e config.bak); then
|
|
mv config.bak .config
|
|
fi
|