mirror of
https://github.com/apache/nuttx.git
synced 2026-05-25 18:27:56 +08:00
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:
+6
-2
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user