From 1128176211c5c02a37f8cf93078a1342f68d7ea0 Mon Sep 17 00:00:00 2001 From: Igor Pecovnik Date: Sun, 9 Nov 2025 13:30:19 +0100 Subject: [PATCH 1/2] Improve first login for automated builds --- .../bsp/common/usr/lib/armbian/armbian-firstlogin | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/packages/bsp/common/usr/lib/armbian/armbian-firstlogin b/packages/bsp/common/usr/lib/armbian/armbian-firstlogin index 90e78f60536d..3a83426211ff 100755 --- a/packages/bsp/common/usr/lib/armbian/armbian-firstlogin +++ b/packages/bsp/common/usr/lib/armbian/armbian-firstlogin @@ -804,12 +804,11 @@ if [[ -f /root/.not_logged_in_yet && -n $(tty) ]]; then fi else - echo -e "\e[0;31m\nWARNING!\x1B[0m\n\nYou are using an \e[0;31mautomated build\x1B[0m meant only for developers to provide" - echo -e "constructive feedback to improve build system, OS settings or UX.\n" - - echo -e "If this does not apply to you, \e[0;31mSTOP NOW!\x1B[0m Especially don't use this " - echo -e "image for production since things might not work as expected or at " - echo -e "all. They may break anytime with next update." + echo -e "\e[0;31m\nDeveloper Preview Build\x1B[0m\n" + echo -e "This Armbian image was generated automatically for development and testing." + echo -e "It may include unfinished features or unstable components.\n" + echo -e "If you’re not here to test or report issues, \e[0;31mplease don’t use this image in production.\x1B[0m" + echo -e "Expect things to change — or even break — as improvements are made." fi From d86b140495efe110711e9dd52853cb43426c4349 Mon Sep 17 00:00:00 2001 From: Werner <3305006+EvilOlaf@users.noreply.github.com> Date: Mon, 10 Nov 2025 06:09:49 +0100 Subject: [PATCH 2/2] minor grammar adjustments --- packages/bsp/common/usr/lib/armbian/armbian-firstlogin | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/bsp/common/usr/lib/armbian/armbian-firstlogin b/packages/bsp/common/usr/lib/armbian/armbian-firstlogin index 3a83426211ff..1ac122de4120 100755 --- a/packages/bsp/common/usr/lib/armbian/armbian-firstlogin +++ b/packages/bsp/common/usr/lib/armbian/armbian-firstlogin @@ -805,9 +805,9 @@ if [[ -f /root/.not_logged_in_yet && -n $(tty) ]]; then else echo -e "\e[0;31m\nDeveloper Preview Build\x1B[0m\n" - echo -e "This Armbian image was generated automatically for development and testing." + echo -e "This Armbian image was generated automatically for development and testing purpose." echo -e "It may include unfinished features or unstable components.\n" - echo -e "If you’re not here to test or report issues, \e[0;31mplease don’t use this image in production.\x1B[0m" + echo -e "If you are not here to report issues or just test it, \e[0;31mplease do not use this image in production.\x1B[0m" echo -e "Expect things to change — or even break — as improvements are made." fi