blob: 4ac52c9ab3ae93b699f623372441328b74bcebd4 [file] [log] [blame]
Gustavo Henrique Nihei38453f62021-11-03 15:00:19 -03001#!/usr/bin/env bash
2# SPDX-FileCopyrightText: 2021 Espressif Systems (Shanghai) CO LTD
3# SPDX-License-Identifier: Apache-2.0
4
Gustavo Henrique Nihei38453f62021-11-03 15:00:19 -03005set -eo pipefail
6
Gustavo Henrique Nihei67b73d32021-12-09 17:05:10 -03007install_imgtool() {
8 pip install imgtool
9}
10
Gustavo Henrique Nihei38453f62021-11-03 15:00:19 -030011install_idf() {
Almir Okatob91485a2023-05-05 15:50:28 -030012 pushd $HOME
Almir Okato59e9f032024-12-19 18:33:43 -030013 git clone --depth=1 https://github.com/espressif/esp-idf.git --branch v5.1.4
Almir Okatob91485a2023-05-05 15:50:28 -030014 [[ $? -ne 0 ]] && exit 1
15
16 $HOME/esp-idf/install.sh
17 [[ $? -ne 0 ]] && exit 1
18
19 popd
Gustavo Henrique Nihei38453f62021-11-03 15:00:19 -030020}
21
Gustavo Henrique Nihei67b73d32021-12-09 17:05:10 -030022install_imgtool
Gustavo Henrique Nihei38453f62021-11-03 15:00:19 -030023install_idf