From ac8a348c0d2bed18518930d5c95a064ebb27bd23 Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Sat, 14 Feb 2026 14:03:27 -0500 Subject: [PATCH] Update install add prints --- install | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/install b/install index 39f769f2..74ccca77 100755 --- a/install +++ b/install @@ -82,21 +82,21 @@ echo -e "\ninstallation script for CubeSatSim v2.2\n" if [[ $(grep 'dtoverlay=pwm,pin=18,func=2' /boot/config.txt) ]]; then echo "dtoverlay=pwm,pin=18,func=2 already in /boot/config.txt" else - echo "adding to /boot/config.txt" + echo "adding overlay=pwm,pin=18,func=2 to /boot/config.txt" sudo sh -c 'echo "\ndtoverlay=pwm,pin=18,func=2" >> /boot/config.txt' fi if [[ $(grep 'disable_splash=1 ' /boot/config.txt) ]]; then echo "disable_splash=1 already in /boot/config.txt" else - echo "adding to /boot/config.txt" + echo "adding disable_splash=1 to /boot/config.txt" sudo sh -c 'echo "\ndisable_splash=1" >> /boot/config.txt' fi if [[ $(grep 'boot_delay=0' /boot/config.txt) ]]; then echo "boot_delay=0 already in /boot/config.txt" else - echo "adding to /boot/config.txt" + echo "adding boot_delay=0 to /boot/config.txt" sudo sh -c 'echo "\nboot_delay=0" >> /boot/config.txt' fi