From dbfc7b7ef7b55ece2da1987793fcaf9710f9aa2f Mon Sep 17 00:00:00 2001 From: Ramiro Ricoy Date: Sun, 13 Jun 2021 18:13:05 -0300 Subject: [PATCH] Update build.sh Provide a way to enable menuconfig to build custom configurations. Also can be enabled by default. --- build.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build.sh b/build.sh index a36da3a9d..4f59dd37d 100755 --- a/build.sh +++ b/build.sh @@ -32,6 +32,8 @@ for target in $TARGETS; do # configure the build for the target rm -rf build sdkconfig sdkconfig.old cp "sdkconfig.$target" sdkconfig + # uncomment next line to access menuconfig + # idf.py menuconfig # build and prepare libs idf.py build if [ $? -ne 0 ]; then exit 1; fi