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:
parent
23cd1e030e
commit
f2d9f5c43a
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue