#!/usr/bin/env bash
WD=`test -d ${0%/*} && cd ${0%/*}; pwd`
CWD=`pwd`
USAGE="USAGE: $0 [options] <board>:<config>+"
ADVICE="Try '$0 --help' for more information"
unset CONFIGS
diff=0
debug=n
defaults=n
prompt=y
nocopy=n
cmake=n
while [ ! -z "$1" ]; do
case $1 in
--debug )
debug=y
;;
--silent )
defaults=y
prompt=n
;;
--prompt )
prompt=y
;;
--defaults )
defaults=y
;;
--nocopy )
nocopy=y
;;
--cmake )
cmake=y
;;
--help )
echo "$0 is a tool for refreshing board configurations"
echo ""
echo $USAGE
echo ""
echo "Where [options] include:"
echo " --debug"
echo " Enable script debug"
echo " --silent"
echo " Update board configuration without interaction. Implies --defaults."
echo " Assumes no prompt for save. Use --silent --prompt to prompt before saving."
echo " --prompt"
echo " Prompt before updating and overwriting the defconfig file. Default is to"
echo " prompt unless --silent"
echo " --defaults"
echo " Do not prompt for new default selections; accept all recommended default values"
echo " --nocopy"
echo " Do not copy defconfig from nuttx/boards/<board>/configs to nuttx/.config"
echo " --cmake"
echo " Use CMake refresh target instead of make refresh to refresh the defconfig"
echo " --help"
echo " Show this help message and exit"
echo " <board>"
echo " The board directory under nuttx/boards/arch/chip/"
echo " <config>"
echo " The board configuration directory under nuttx/boards/arch/chip/<board>/configs"
echo " <archname>"
echo " The architecture directory under nuttx/boards/"
echo " <chipname>"
echo " The chip family directory under nuttx/boards/<arch>/"
echo " Note1: all configuration is refreshed if <board>:<config> equals all."
echo " Note2: all configuration of arch XYZ is refreshed if \"arch:<namearch>\" is passed"
echo " Note3: all configuration of chip XYZ is refreshed if \"chip:<chipname>\" is passed"
exit 0
;;
* )
CONFIGS=$*
break
;;
esac
shift
done
MYNAME=`basename $0`
cd $WD
if [ -x ./${MYNAME} ] ; then
cd .. || { echo "ERROR: cd .. failed" ; exit 1 ; }
fi
if [ ! -x tools/${MYNAME} ] ; then
echo "ERROR: This file must be executed from the top-level NuttX directory: $PWD"
exit 1
fi
if [ -z "${CONFIGS}" ]; then
echo "ERROR: No configuration provided"
echo $USAGE
echo $ADVICE
exit 1
fi
if [ "X${CONFIGS}" == "Xall" ]; then
echo "Normalizing all boards!"
CONFIGS=(`find boards -name defconfig | cut -d'/' -f4,6`)
else
if [[ "X${CONFIGS}" == "Xarch:"* ]]; then
IFS=: read -r atype archname <<< "${CONFIGS}"
ARCH=$archname
echo "Normalizing all boards in arch: ${ARCH} !"
CONFIGS=(`find boards/${ARCH} -name defconfig | cut -d'/' -f4,6`)
else
if [[ "X${CONFIGS}" == "Xchip:"* ]]; then
IFS=: read -r atype chipname <<< "${CONFIGS}"
CHIP=$chipname
echo "Normalizing all boards in chip: ${CHIP} !"
CONFIGS=(`find boards/*/${CHIP} -name defconfig | cut -d'/' -f4,6`)
fi
fi
fi
for i in ${!CONFIGS[@]}; do
echo " [$((${i} + 1))/${#CONFIGS[@]}] Normalize ${CONFIGS[$i]}"
CONFIGSUBDIR=`echo ${CONFIGS[$i]} | cut -s -d':' -f2`
if [ -z "${CONFIGSUBDIR}" ]; then
CONFIGSUBDIR=`echo ${CONFIGS[$i]} | cut -s -d'/' -f2`
if [ -z "${CONFIGSUBDIR}" ]; then
echo "ERROR: Malformed configuration: ${CONFIGS[$i]}"
echo $USAGE
echo $ADVICE
exit 1
else
BOARDSUBDIR=`echo ${CONFIGS[$i]} | cut -d'/' -f1`
fi
else
BOARDSUBDIR=`echo ${CONFIGS[$i]} | cut -d':' -f1`
fi
BOARDDIR=${CONFIGS[$i]}
if [ ! -d $BOARDDIR ]; then
BOARDDIR="${CWD}/${BOARDDIR}"
fi
if [ -d $BOARDDIR ]; then
CONFIGSUBDIR=`basename ${CONFIGS[$i]}`
BOARDDIR=$(dirname `dirname ${BOARDDIR}`)
else
BOARDDIR=boards/*/*/$BOARDSUBDIR
fi
SCRIPTSDIR=$BOARDDIR/scripts
MAKEDEFS1=$SCRIPTSDIR/Make.defs
CONFIGDIR=$BOARDDIR/configs/$CONFIGSUBDIR
DEFCONFIG=$CONFIGDIR/defconfig
MAKEDEFS2=$CONFIGDIR/Make.defs
SCRIPTSDIR2=$BOARDDIR/../common/scripts
MAKEDEFS3=$SCRIPTSDIR2/Make.defs
if [ ! -d $BOARDDIR ]; then
echo "No board directory found at $BOARDDIR"
exit 1
fi
if [ ! -d $CONFIGDIR ]; then
echo "No configuration directory found at $CONFIGDIR"
exit 1
fi
if [ ! -r $DEFCONFIG ]; then
echo "No readable defconfig file at $DEFCONFIG"
exit 1
fi
if grep -q "#include" $DEFCONFIG; then
echo "Note: skipping refresh for debug defconfig."
continue
fi
if [ "X${cmake}" != "Xn" ]; then
CMAKE_BINARY_DIR=${PWD}/refresh
if [ -d $CMAKE_BINARY_DIR ]; then
rm -rf $CMAKE_BINARY_DIR
fi
if [ -d ../${CONFIG} ] ; then
CONFIG="../${CONFIG}"
fi
if ! cmake -B ${CMAKE_BINARY_DIR} -DBOARD_CONFIG=${CONFIG} -GNinja; then
echo "Error: config ${CONFIG} generate fail"
exit 1
fi
if ! cmake --build ${CMAKE_BINARY_DIR} -t refreshsilent ; then
echo "Error: CMake -t refreshsilent fail"
exit 1
fi
cp ${CMAKE_BINARY_DIR}/defconfig defconfig
rm -rf $CMAKE_BINARY_DIR
else
if [ -r $MAKEDEFS2 ]; then
MAKEDEFS=$MAKEDEFS2
else
if [ -r $MAKEDEFS1 ]; then
MAKEDEFS=$MAKEDEFS1
else
if [ -r $MAKEDEFS3 ]; then
MAKEDEFS=$MAKEDEFS3
else
echo "No readable Make.defs file at $MAKEDEFS1 or $MAKEDEFS2 or $MAKEDEFS3"
exit 1
fi
fi
fi
rm -f SAVEconfig
rm -f SAVEMake.defs
if [ "X${nocopy}" != "Xy" ]; then
if [ -e .config ]; then
mv .config SAVEconfig || \
{ echo "ERROR: Failed to move .config to SAVEconfig"; exit 1; }
fi
cp -a $DEFCONFIG .config || \
{ echo "ERROR: Failed to copy $DEFCONFIG to .config"; exit 1; }
if [ -e Make.defs ]; then
mv Make.defs SAVEMake.defs || \
{ echo "ERROR: Failed to move Make.defs to SAVEMake.defs"; exit 1; }
fi
cp -a $MAKEDEFS Make.defs || \
{ echo "ERROR: Failed to copy $MAKEDEFS to Make.defs"; exit 1; }
if [ "X${defaults}" == "Xy" ]; then
if [ "X${debug}" == "Xy" ]; then
make olddefconfig V=1
else
make olddefconfig 1>/dev/null
fi
else
if [ "X${debug}" == "Xy" ]; then
make oldconfig V=1
else
make oldconfig
fi
fi
fi
if [ "X${debug}" == "Xy" ]; then
make savedefconfig V=1
else
make savedefconfig 1>/dev/null
fi
fi
if ! diff $DEFCONFIG defconfig; then
if [ "X${prompt}" == "Xy" ]; then
read -p "Save the new configuration (y/n)?" -n 1 -r
echo
if [[ $REPLY =~ ^[Yy]$ ]]; then
echo "Saving the new configuration file"
mv defconfig $DEFCONFIG || \
{ echo "ERROR: Failed to move defconfig to $DEFCONFIG"; exit 1; }
chmod 644 $DEFCONFIG
fi
else
echo "Saving the new configuration file"
mv defconfig $DEFCONFIG || \
{ echo "ERROR: Failed to move defconfig to $DEFCONFIG"; exit 1; }
chmod 644 $DEFCONFIG
fi
diff=1
fi
if [ -e SAVEMake.defs ]; then
mv SAVEMake.defs Make.defs || \
{ echo "ERROR: Failed to move SAVEMake.defs to Make.defs"; exit 1; }
fi
if [ -e SAVEconfig ]; then
mv SAVEconfig .config || \
{ echo "ERROR: Failed to move SAVEconfig to .config"; exit 1; }
if [ "X${debug}" == "Xy" ]; then
./tools/sethost.sh V=1
else
./tools/sethost.sh 1>/dev/null
fi
fi
done
exit $diff