blob: c2ec2c4edf361f8e1a91b5983c2552ac520a16b3 [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
13 git clone --depth=1 https://github.com/espressif/esp-idf.git --branch release/v5.1
14 [[ $? -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