From 242cb178e184ec6785b664b96643079e0f27dbc3 Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Sun, 8 Feb 2026 11:05:51 -0500 Subject: [PATCH] Update install with missing text --- install | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install b/install index 2b81c3d3..8ceb4115 100755 --- a/install +++ b/install @@ -285,14 +285,14 @@ sudo raspi-config nonint do_legacy 0 if [[ $(grep 'disable_splash=1 ' /boot/firmware/config.txt) ]]; then echo "disable_splash=1 already in /boot/firmware/config.txt" else - echo "adding to /boot/firmware/config.txt" + echo "adding disable_splash=1 to /boot/firmware/config.txt" sudo sh -c 'echo "\ndisable_splash=1" >> /boot/firmware/config.txt' fi if [[ $(grep 'boot_delay=0' /boot/firmware/config.txt) ]]; then echo "boot_delay=0 already in /boot/firmware/config.txt" else - echo "adding to /boot/firmware/config.txt" + echo "adding boot_delay=0 to /boot/firmware/config.txt" sudo sh -c 'echo "\nboot_delay=0" >> /boot/firmware/config.txt' fi