shivamking05675 patch 1 applied(rpitx pull 306)

This commit is contained in:
Kuba 2023-11-19 16:10:11 +00:00
parent 2ab7330c44
commit d422dbf113
1 changed files with 2 additions and 2 deletions

View File

@ -32,10 +32,10 @@ sudo make install
cd .. || exit cd .. || exit
printf "\n\n" printf "\n\n"
printf "In order to run properly, rpitx need to modify /boot/config.txt. Are you sure (y/n) " printf "In order to run properly, rpitx needs to modify /boot/config.txt. Are you sure (y/yes/n)? "
read -r CONT read -r CONT
if [ "$CONT" = "y" ]; then if [ "$CONT" = "y" ] || [ "$CONT" = "yes" ]; then
echo "Set GPU to 250Mhz in order to be stable" echo "Set GPU to 250Mhz in order to be stable"
LINE='gpu_freq=250' LINE='gpu_freq=250'
FILE='/boot/config.txt' FILE='/boot/config.txt'