From de74eecd778d3f9af20de28371c337c2d6eea6d8 Mon Sep 17 00:00:00 2001 From: Cameron Thompson <50184035+iamromulan@users.noreply.github.com> Date: Thu, 28 Mar 2024 00:18:27 -0400 Subject: [PATCH] Update ttyd source to 1.75 https://github.com/tsl0922/ttyd/releases/tag/1.7.5 --- RMxxx_rgmii_toolkit.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/RMxxx_rgmii_toolkit.sh b/RMxxx_rgmii_toolkit.sh index b93e9de..83eefd1 100644 --- a/RMxxx_rgmii_toolkit.sh +++ b/RMxxx_rgmii_toolkit.sh @@ -814,14 +814,14 @@ install_ttyd() { if [ -d "/usrdata/ttyd" ]; then echo -e "\e[1;34mttyd is already installed. Choose an option:\e[0m" - echo -e "\e[1;34m1.) Update to ttyd 1.7.4 (DO NOT UPDATE WHILE USING ttyd! Use ADB or SSH instead)\e[0m" + echo -e "\e[1;34m1.) Update to ttyd 1.7.5 (DO NOT UPDATE WHILE USING ttyd! Use ADB or SSH instead)\e[0m" echo -e "\e[1;31m2.) Uninstall ttyd\e[0m" read -p "Enter your choice (1/2): " choice case $choice in 1) echo -e "\e[1;34mUpdating ttyd...\e[0m" systemctl stop ttyd - wget -O /usrdata/ttyd/ttyd https://github.com/tsl0922/ttyd/releases/download/1.7.4/ttyd.armhf && chmod +x /usrdata/ttyd/ttyd + wget -O /usrdata/ttyd/ttyd https://github.com/tsl0922/ttyd/releases/download/1.7.5/ttyd.armhf && chmod +x /usrdata/ttyd/ttyd systemctl start ttyd echo -e "\e[1;32mttyd has been updated.\e[0m" ;;