mirror of
https://github.com/espressif/esp-idf.git
synced 2026-04-27 19:13:21 +00:00
tools: Installing tools for given IDF_TARGET
Allow user to select specific ESP_TARGET while setting up ESD_IDF. Only necessary tools for given target will be downloaded and installed. Closes https://github.com/espressif/esp-idf/issues/5113
This commit is contained in:
+8
-1
@@ -7,8 +7,15 @@ set -x IDF_PATH $basedir
|
||||
echo "Detecting the Python interpreter"
|
||||
source "$IDF_PATH"/tools/detect_python.fish
|
||||
|
||||
if not set -q argv[1]
|
||||
set TARGETS "all"
|
||||
else
|
||||
set TARGETS $argv[1]
|
||||
end
|
||||
echo "Installing ESP-IDF tools"
|
||||
"$ESP_PYTHON" "$IDF_PATH"/tools/idf_tools.py install
|
||||
"$ESP_PYTHON" "$IDF_PATH"/tools/idf_tools.py install --targets=$TARGETS
|
||||
exit 1
|
||||
end
|
||||
|
||||
echo "Installing Python environment and packages"
|
||||
"$ESP_PYTHON" "$IDF_PATH"/tools/idf_tools.py install-python-env
|
||||
|
||||
Reference in New Issue
Block a user