From d422dbf113d52da05d99ba4682104d6fa77e4d73 Mon Sep 17 00:00:00 2001 From: Kuba <132459354+KubaPro010@users.noreply.github.com> Date: Sun, 19 Nov 2023 16:10:11 +0000 Subject: [PATCH] shivamking05675 patch 1 applied(rpitx pull 306) --- install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index 82c7726..6c3f716 100755 --- a/install.sh +++ b/install.sh @@ -32,10 +32,10 @@ sudo make install cd .. || exit 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 -if [ "$CONT" = "y" ]; then +if [ "$CONT" = "y" ] || [ "$CONT" = "yes" ]; then echo "Set GPU to 250Mhz in order to be stable" LINE='gpu_freq=250' FILE='/boot/config.txt'