mirror of
https://github.com/apache/nuttx.git
synced 2025-01-13 09:49:21 +08:00
tools/refresh.sh: Fix the configuratin refresh script for changes to configuration paths.
This commit is contained in:
parent
e12c133a53
commit
aa49f831be
2 changed files with 3 additions and 3 deletions
|
@ -8,7 +8,7 @@
|
||||||
<tr align="center" bgcolor="#e4e4e4">
|
<tr align="center" bgcolor="#e4e4e4">
|
||||||
<td>
|
<td>
|
||||||
<h1><big><font color="#3c34ec"><i>NuttX README Files</i></font></big></h1>
|
<h1><big><font color="#3c34ec"><i>NuttX README Files</i></font></big></h1>
|
||||||
<p>Last Updated: June 17, 2019</p>
|
<p>Last Updated: August 5, 2019</p>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
|
@ -77,7 +77,7 @@ while [ ! -z "$1" ]; do
|
||||||
echo " <board>"
|
echo " <board>"
|
||||||
echo " The board directory under nuttx/boards"
|
echo " The board directory under nuttx/boards"
|
||||||
echo " <config>"
|
echo " <config>"
|
||||||
echo " The board configuration directory under nuttx/boards/<board>"
|
echo " The board configuration directory under nuttx/boards/<board>/configs"
|
||||||
exit 0
|
exit 0
|
||||||
;;
|
;;
|
||||||
* )
|
* )
|
||||||
|
@ -121,7 +121,7 @@ BOARDDIR=boards/$BOARDSUBDIR
|
||||||
SCRIPTSDIR=$BOARDDIR/scripts
|
SCRIPTSDIR=$BOARDDIR/scripts
|
||||||
MAKEDEFS1=$SCRIPTSDIR/Make.defs
|
MAKEDEFS1=$SCRIPTSDIR/Make.defs
|
||||||
|
|
||||||
CONFIGDIR=$BOARDDIR/$CONFIGSUBDIR
|
CONFIGDIR=$BOARDDIR/configs/$CONFIGSUBDIR
|
||||||
DEFCONFIG=$CONFIGDIR/defconfig
|
DEFCONFIG=$CONFIGDIR/defconfig
|
||||||
MAKEDEFS2=$CONFIGDIR/Make.defs
|
MAKEDEFS2=$CONFIGDIR/Make.defs
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue