mirror of
https://github.com/apache/nuttx.git
synced 2025-01-13 10:58:49 +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">
|
||||
<td>
|
||||
<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>
|
||||
</tr>
|
||||
</table>
|
||||
|
|
|
@ -77,7 +77,7 @@ while [ ! -z "$1" ]; do
|
|||
echo " <board>"
|
||||
echo " The board directory under nuttx/boards"
|
||||
echo " <config>"
|
||||
echo " The board configuration directory under nuttx/boards/<board>"
|
||||
echo " The board configuration directory under nuttx/boards/<board>/configs"
|
||||
exit 0
|
||||
;;
|
||||
* )
|
||||
|
@ -121,7 +121,7 @@ BOARDDIR=boards/$BOARDSUBDIR
|
|||
SCRIPTSDIR=$BOARDDIR/scripts
|
||||
MAKEDEFS1=$SCRIPTSDIR/Make.defs
|
||||
|
||||
CONFIGDIR=$BOARDDIR/$CONFIGSUBDIR
|
||||
CONFIGDIR=$BOARDDIR/configs/$CONFIGSUBDIR
|
||||
DEFCONFIG=$CONFIGDIR/defconfig
|
||||
MAKEDEFS2=$CONFIGDIR/Make.defs
|
||||
|
||||
|
|
Loading…
Reference in a new issue