liuguo09 opened a new issue #1407:
URL: https://github.com/apache/incubator-nuttx/issues/1407
$ ./tools/configure.sh sim:nsh menuconfig
The cmds above do not show menuconfig UI since configure.sh calls
sethost.sh, in which it redirects output to /dev/null if params not 'V=1'. So
the menuconfig UI would never show up. So I wonder if this usage is normal,
should we do not redirect to /dev/null? @Ouss4 @xiaoxiang781216
tools/sethost.sh
_if grep -q "V=1" <<< "$*" ; then
make olddefconfig $* || { echo "ERROR: failed to refresh"; exit 1; }
else
make olddefconfig $* 1>/dev/null || { echo "ERROR: failed to refresh";
exit 1; }
fi_
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]