configure.sh: update custom board config build

If Make.defs not found under boardconfig dir, then try
scripts/Make.defs.

Signed-off-by: liuhaitao <liuhaitao@xiaomi.com>
This commit is contained in:
liuhaitao 2020-10-21 15:34:15 +08:00 committed by Matias N
parent 23cd1e030e
commit f2d9f5c43a
1 changed files with 6 additions and 2 deletions

View File

@ -165,8 +165,12 @@ if [ ! -r ${src_makedefs} ]; then
if [ ! -r ${src_makedefs} ]; then
src_makedefs=${TOPDIR}/${boardconfig}/Make.defs
if [ ! -r ${src_makedefs} ]; then
echo "File Make.defs could not be found"
exit 4
src_makedefs=${TOPDIR}/${boardconfig}/../../scripts/Make.defs
if [ ! -r ${src_makedefs} ]; then
echo "File Make.defs could not be found"
exit 4
fi
fi
fi
fi