You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
990 B
26 lines
990 B
#!/bin/bash
|
|
set -eu -o pipefail
|
|
export BOARD="RA4M1_CLICKER"
|
|
DT=`date +%Y%m%d%H%M`
|
|
make DEBUG=1 BOARD=${BOARD} clean 2>&1 | tee ${BOARD}_build_${DT}.log
|
|
make DEBUG=1 BOARD=${BOARD} 2>&1 | tee -a ${BOARD}_build_${DT}.log
|
|
#
|
|
export BOARD="RA6M2_EK"
|
|
DT=`date +%Y%m%d%H%M`
|
|
make DEBUG=1 BOARD=${BOARD} clean 2>&1 | tee ${BOARD}_build_${DT}.log
|
|
make DEBUG=1 BOARD=${BOARD} 2>&1 | tee -a ${BOARD}_build_${DT}.log
|
|
#
|
|
export BOARD="RA4M1_EK"
|
|
DT=`date +%Y%m%d%H%M`
|
|
make DEBUG=1 BOARD=${BOARD} clean 2>&1 | tee ${BOARD}_build_${DT}.log
|
|
make DEBUG=1 BOARD=${BOARD} 2>&1 | tee -a ${BOARD}_build_${DT}.log
|
|
#
|
|
export BOARD="RA4W1_EK"
|
|
DT=`date +%Y%m%d%H%M`
|
|
make DEBUG=1 BOARD=${BOARD} clean 2>&1 | tee ${BOARD}_build_${DT}.log
|
|
make DEBUG=1 BOARD=${BOARD} 2>&1 | tee -a ${BOARD}_build_${DT}.log
|
|
#
|
|
export BOARD="RA6M1_EK"
|
|
DT=`date +%Y%m%d%H%M`
|
|
make DEBUG=1 BOARD=${BOARD} clean 2>&1 | tee ${BOARD}_build_${DT}.log
|
|
make DEBUG=1 BOARD=${BOARD} 2>&1 | tee -a ${BOARD}_build_${DT}.log
|
|
|