dc7de6ed83
Changes in this commit: - Change MICROPY_HW_BOARD_NAME definition to match the product name. - Rename board folder's name to match the product name style. - Change related files like Makefile, document descriptions, test cases, CI and tools. Signed-off-by: Takeo Takahashi <takeo.takahashi.xv@renesas.com>
27 lines
990 B
Bash
27 lines
990 B
Bash
#!/bin/bash
|
|
set -eu -o pipefail
|
|
export BOARD="RA4M1_CLICKER"
|
|
DT=`date +%Y%m%d%H%M`
|
|
make DEBUG=0 BOARD=${BOARD} clean 2>&1 | tee ${BOARD}_build_${DT}.log
|
|
make DEBUG=0 BOARD=${BOARD} 2>&1 | tee -a ${BOARD}_build_${DT}.log
|
|
#
|
|
export BOARD="EK_RA6M2"
|
|
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="EK_RA4M1"
|
|
DT=`date +%Y%m%d%H%M`
|
|
make DEBUG=0 BOARD=${BOARD} clean 2>&1 | tee ${BOARD}_build_${DT}.log
|
|
make DEBUG=0 BOARD=${BOARD} 2>&1 | tee -a ${BOARD}_build_${DT}.log
|
|
#
|
|
export BOARD="EK_RA4W1"
|
|
DT=`date +%Y%m%d%H%M`
|
|
make DEBUG=0 BOARD=${BOARD} clean 2>&1 | tee ${BOARD}_build_${DT}.log
|
|
make DEBUG=0 BOARD=${BOARD} 2>&1 | tee -a ${BOARD}_build_${DT}.log
|
|
#
|
|
export BOARD="EK_RA6M1"
|
|
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
|