From 560531a63505eb610d269b26858689307a9483f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Igor=20Pe=C4=8Dovnik?= Date: Wed, 22 Jun 2022 00:22:30 +0200 Subject: [PATCH] Fix for wrong board status report at first login (#3926) --- packages/bsp/common/usr/lib/armbian/armbian-firstlogin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/bsp/common/usr/lib/armbian/armbian-firstlogin b/packages/bsp/common/usr/lib/armbian/armbian-firstlogin index 14010ac5f..2ed5f7e37 100755 --- a/packages/bsp/common/usr/lib/armbian/armbian-firstlogin +++ b/packages/bsp/common/usr/lib/armbian/armbian-firstlogin @@ -356,7 +356,7 @@ if [[ -f /root/.not_logged_in_yet && -n $(tty) ]]; then echo -e "\nSupport status: \e[0;31mno support\x1B[0m (edge kernel branch)" elif [[ "$DISTRIBUTION_STATUS" != "supported" ]]; then echo -e "\nSupport status: \e[0;31mno support\x1B[0m (unsupported userspace)" - elif [[ "$BOARD_TYPE" != "supported" ]]; then + elif [[ "$BOARD_TYPE" != "conf" ]]; then echo -e "\nSupport status: \e[0;31mcommunity support\x1B[0m (looking for a dedicated maintainer)" fi else