Files
esp-idf-tools/custom_bin/rebuildfull
T
2024-11-13 12:24:17 -07:00

32 lines
600 B
Bash

#!/bin/bash
echo -e "\nFully Rebuildan~\n"
bash fullclean
echo -e "\nSetting up project for $ESPTARGET\n"
idf.py set-target $ESPTARGET
echo -e "\nErase flash? y/n"
read wipe
if [ "$wipe" == "y" ]; then
echo -e "\nExecuting erase-flash\n"
idf.py erase-flash
echo -e "\nFlash wiped\n"
fi
echo -e "\nRun menuconfig y/n?\n"
read menuconfig
if [ "$menuconfig" == "y" ]; then
echo -e "\nExecuting menuconfig\n"
idf.py menuconfig
fi
echo -e "\nBuild now? y/n"
read build
if [ "$build" == "y" ]; then
echo -e "\nBuildan~\n"
idf.py build
echo -e "\nBuild complete\n"
fi
echo -e "\nAll done :3\n"